-- MySQL dump 10.16  Distrib 10.2.25-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: willet5_wp314
-- ------------------------------------------------------
-- Server version	10.2.25-MariaDB-log

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wprl_EWD_OTP_Custom_Fields`
--

DROP TABLE IF EXISTS `wprl_EWD_OTP_Custom_Fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_EWD_OTP_Custom_Fields` (
  `Field_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Field_Name` text NOT NULL DEFAULT '',
  `Field_Slug` text NOT NULL DEFAULT '',
  `Field_Type` text NOT NULL DEFAULT '',
  `Field_Description` text NOT NULL DEFAULT '',
  `Field_Values` text NOT NULL DEFAULT '',
  `Field_Front_End_Display` text NOT NULL DEFAULT '',
  `Field_Required` text NOT NULL DEFAULT '',
  `Field_Function` text NOT NULL DEFAULT '',
  `Field_Equivalent` text NOT NULL DEFAULT '',
  `Field_Display` text NOT NULL DEFAULT '',
  `Field_Order` mediumint(9) DEFAULT 9999,
  `Field_Date_Created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `id` (`Field_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_EWD_OTP_Custom_Fields`
--

LOCK TABLES `wprl_EWD_OTP_Custom_Fields` WRITE;
/*!40000 ALTER TABLE `wprl_EWD_OTP_Custom_Fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_EWD_OTP_Custom_Fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_EWD_OTP_Customers`
--

DROP TABLE IF EXISTS `wprl_EWD_OTP_Customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_EWD_OTP_Customers` (
  `Customer_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Customer_Name` text NOT NULL DEFAULT '',
  `Sales_Rep_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Customer_WP_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Customer_FEUP_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Customer_Email` text NOT NULL DEFAULT '',
  `Customer_Created` datetime DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `id` (`Customer_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_EWD_OTP_Customers`
--

LOCK TABLES `wprl_EWD_OTP_Customers` WRITE;
/*!40000 ALTER TABLE `wprl_EWD_OTP_Customers` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_EWD_OTP_Customers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_EWD_OTP_Fields_Meta`
--

DROP TABLE IF EXISTS `wprl_EWD_OTP_Fields_Meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_EWD_OTP_Fields_Meta` (
  `Meta_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Field_ID` mediumint(9) DEFAULT 0,
  `Order_ID` mediumint(9) DEFAULT 0,
  `Customer_ID` mediumint(9) DEFAULT 0,
  `Sales_Rep_ID` mediumint(9) DEFAULT 0,
  `Meta_Value` text NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`Meta_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_EWD_OTP_Fields_Meta`
--

LOCK TABLES `wprl_EWD_OTP_Fields_Meta` WRITE;
/*!40000 ALTER TABLE `wprl_EWD_OTP_Fields_Meta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_EWD_OTP_Fields_Meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_EWD_OTP_Order_Statuses`
--

DROP TABLE IF EXISTS `wprl_EWD_OTP_Order_Statuses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_EWD_OTP_Order_Statuses` (
  `Order_Status_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Order_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Order_Status` text NOT NULL DEFAULT '',
  `Order_Location` text NOT NULL DEFAULT '',
  `Order_Internal_Status` text NOT NULL DEFAULT '',
  `Order_Status_Created` datetime DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `id` (`Order_Status_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_EWD_OTP_Order_Statuses`
--

LOCK TABLES `wprl_EWD_OTP_Order_Statuses` WRITE;
/*!40000 ALTER TABLE `wprl_EWD_OTP_Order_Statuses` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_EWD_OTP_Order_Statuses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_EWD_OTP_Orders`
--

DROP TABLE IF EXISTS `wprl_EWD_OTP_Orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_EWD_OTP_Orders` (
  `Order_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Order_Name` text NOT NULL DEFAULT '',
  `Order_Number` text NOT NULL DEFAULT '',
  `Order_Status` text NOT NULL DEFAULT '',
  `Order_External_Status` text NOT NULL DEFAULT '',
  `Order_Location` text NOT NULL DEFAULT '',
  `Order_Notes_Public` text NOT NULL DEFAULT '',
  `Order_Notes_Private` text NOT NULL DEFAULT '',
  `Order_Customer_Notes` text NOT NULL DEFAULT '',
  `Order_Email` text NOT NULL DEFAULT '',
  `Sales_Rep_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Customer_ID` mediumint(9) NOT NULL DEFAULT 0,
  `WooCommerce_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Zendesk_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Order_Status_Updated` datetime DEFAULT '0000-00-00 00:00:00',
  `Order_Display` text NOT NULL DEFAULT '',
  `Order_Payment_Price` text NOT NULL DEFAULT '',
  `Order_Payment_Completed` text NOT NULL DEFAULT '',
  `Order_PayPal_Receipt_Number` text NOT NULL DEFAULT '',
  `Order_View_Count` mediumint(9) NOT NULL DEFAULT 0,
  `Order_Tracking_Link_Clicked` text NOT NULL DEFAULT '',
  `Order_Tracking_Link_Code` text NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`Order_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_EWD_OTP_Orders`
--

LOCK TABLES `wprl_EWD_OTP_Orders` WRITE;
/*!40000 ALTER TABLE `wprl_EWD_OTP_Orders` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_EWD_OTP_Orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_EWD_OTP_Sales_Reps`
--

DROP TABLE IF EXISTS `wprl_EWD_OTP_Sales_Reps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_EWD_OTP_Sales_Reps` (
  `Sales_Rep_ID` mediumint(9) NOT NULL AUTO_INCREMENT,
  `Sales_Rep_First_Name` text NOT NULL DEFAULT '',
  `Sales_Rep_Last_Name` text NOT NULL DEFAULT '',
  `Sales_Rep_Email` text NOT NULL DEFAULT '',
  `Sales_Rep_WP_ID` mediumint(9) NOT NULL DEFAULT 0,
  `Sales_Rep_Created` datetime DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `id` (`Sales_Rep_ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_EWD_OTP_Sales_Reps`
--

LOCK TABLES `wprl_EWD_OTP_Sales_Reps` WRITE;
/*!40000 ALTER TABLE `wprl_EWD_OTP_Sales_Reps` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_EWD_OTP_Sales_Reps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_ahm_download_stats`
--

DROP TABLE IF EXISTS `wprl_ahm_download_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_ahm_download_stats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pid` int(11) NOT NULL,
  `uid` int(11) NOT NULL,
  `oid` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `year` int(4) NOT NULL,
  `month` int(2) NOT NULL,
  `day` int(2) NOT NULL,
  `timestamp` int(11) NOT NULL,
  `ip` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_ahm_download_stats`
--

LOCK TABLES `wprl_ahm_download_stats` WRITE;
/*!40000 ALTER TABLE `wprl_ahm_download_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_ahm_download_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_ahm_emails`
--

DROP TABLE IF EXISTS `wprl_ahm_emails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_ahm_emails` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `pid` int(11) NOT NULL,
  `date` int(11) NOT NULL,
  `custom_data` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `request_status` int(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_ahm_emails`
--

LOCK TABLES `wprl_ahm_emails` WRITE;
/*!40000 ALTER TABLE `wprl_ahm_emails` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_ahm_emails` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_commentmeta`
--

DROP TABLE IF EXISTS `wprl_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=652 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_commentmeta`
--

LOCK TABLES `wprl_commentmeta` WRITE;
/*!40000 ALTER TABLE `wprl_commentmeta` DISABLE KEYS */;
INSERT INTO `wprl_commentmeta` VALUES (505,506,'verified','0'),(435,463,'verified','0'),(224,104,'rating','1'),(225,104,'verified','0'),(226,105,'rating','3'),(227,105,'verified','0'),(228,106,'rating','1'),(229,106,'verified','0'),(230,107,'rating','2'),(231,107,'verified','0'),(232,108,'rating','2'),(233,108,'verified','0'),(234,111,'rating','3'),(235,111,'verified','0'),(236,112,'rating','1'),(237,112,'verified','0'),(502,505,'rating','3'),(503,505,'verified','0'),(504,506,'rating','1'),(499,502,'verified','0'),(500,503,'rating','1'),(501,503,'verified','0'),(496,501,'rating','2'),(497,501,'verified','0'),(498,502,'rating','2'),(493,497,'verified','0'),(494,498,'rating','4'),(495,498,'verified','0'),(490,496,'rating','3'),(491,496,'verified','0'),(492,497,'rating','1'),(487,493,'verified','0'),(488,494,'rating','5'),(489,494,'verified','0'),(484,492,'rating','4'),(485,492,'verified','0'),(486,493,'rating','3'),(481,490,'verified','0'),(482,491,'rating','2'),(483,491,'verified','0'),(478,489,'rating','3'),(479,489,'verified','0'),(480,490,'rating','3'),(475,487,'verified','0'),(476,488,'rating','1'),(477,488,'verified','0'),(472,486,'rating','3'),(473,486,'verified','0'),(474,487,'rating','4'),(469,484,'verified','0'),(470,485,'rating','3'),(471,485,'verified','0'),(466,483,'rating','1'),(467,483,'verified','0'),(468,484,'rating','1'),(463,481,'verified','0'),(464,482,'rating','3'),(465,482,'verified','0'),(462,481,'rating','1'),(461,480,'verified','0'),(460,480,'rating','4'),(459,479,'verified','0'),(458,479,'rating','4'),(457,478,'verified','0'),(456,478,'rating','3'),(455,477,'verified','0'),(454,477,'rating','1'),(453,476,'verified','0'),(452,476,'rating','3'),(451,475,'verified','0'),(450,475,'rating','4'),(449,474,'verified','0'),(448,474,'rating','4'),(447,473,'verified','0'),(446,473,'rating','1'),(445,472,'verified','0'),(444,472,'rating','1'),(443,471,'verified','0'),(442,471,'rating','2'),(441,470,'verified','0'),(439,469,'verified','0'),(440,470,'rating','2'),(437,466,'verified','0'),(438,469,'rating','1'),(436,466,'rating','1'),(223,103,'verified','0'),(222,103,'rating','1'),(221,102,'verified','0'),(220,102,'rating','4'),(263,129,'verified','0'),(240,114,'rating','2'),(241,114,'verified','0'),(242,115,'rating','4'),(243,115,'verified','0'),(244,116,'rating','2'),(245,116,'verified','0'),(246,117,'rating','2'),(247,117,'verified','0'),(248,118,'rating','2'),(249,118,'verified','0'),(250,119,'rating','1'),(251,119,'verified','0'),(252,120,'rating','2'),(253,120,'verified','0'),(254,121,'rating','3'),(255,121,'verified','0'),(256,122,'rating','4'),(257,122,'verified','0'),(258,123,'rating','3'),(259,123,'verified','0'),(260,124,'rating','3'),(261,124,'verified','0'),(262,129,'rating','5'),(138,79,'rating','1'),(139,79,'verified','0'),(434,463,'rating','1'),(433,180,'verified','0'),(432,180,'rating','4'),(431,179,'verified','0'),(430,179,'rating','4'),(429,178,'verified','0'),(428,178,'rating','4'),(427,177,'verified','0'),(426,177,'rating','4'),(425,176,'verified','0'),(424,176,'rating','3'),(423,175,'verified','0'),(422,175,'rating','1'),(421,174,'verified','0'),(420,174,'rating','2'),(419,172,'verified','0'),(418,172,'rating','4'),(417,171,'verified','0'),(416,171,'rating','3'),(415,169,'verified','0'),(414,169,'rating','2'),(413,165,'verified','0'),(412,165,'rating','4'),(411,164,'verified','0'),(410,164,'rating','1'),(409,163,'verified','0'),(408,163,'rating','3'),(407,162,'verified','0'),(406,162,'rating','4'),(405,160,'verified','0'),(395,154,'verified','0'),(404,160,'rating','2'),(394,154,'rating','3'),(265,130,'verified','0'),(264,130,'rating','3'),(239,113,'verified','0'),(238,113,'rating','1'),(178,81,'rating','1'),(179,81,'verified','0'),(180,82,'rating','1'),(181,82,'verified','0'),(182,83,'rating','1'),(183,83,'verified','0'),(184,84,'rating','1'),(185,84,'verified','0'),(186,85,'rating','3'),(187,85,'verified','0'),(188,86,'rating','2'),(189,86,'verified','0'),(190,87,'rating','2'),(191,87,'verified','0'),(192,88,'rating','3'),(193,88,'verified','0'),(194,89,'rating','1'),(195,89,'verified','0'),(196,90,'rating','4'),(197,90,'verified','0'),(198,91,'rating','4'),(199,91,'verified','0'),(200,92,'rating','1'),(201,92,'verified','0'),(202,93,'rating','2'),(203,93,'verified','0'),(204,94,'rating','4'),(205,94,'verified','0'),(206,95,'rating','4'),(207,95,'verified','0'),(208,96,'rating','1'),(209,96,'verified','0'),(210,97,'rating','1'),(211,97,'verified','0'),(212,98,'rating','1'),(213,98,'verified','0'),(214,99,'rating','2'),(215,99,'verified','0'),(216,100,'rating','3'),(217,100,'verified','0'),(218,101,'rating','3'),(219,101,'verified','0'),(354,131,'rating','1'),(355,131,'verified','0'),(356,132,'rating','3'),(357,132,'verified','0'),(358,133,'rating','3'),(359,133,'verified','0'),(360,134,'rating','1'),(361,134,'verified','0'),(402,159,'rating','1'),(403,159,'verified','0'),(400,157,'rating','2'),(401,157,'verified','0'),(398,156,'rating','2'),(399,156,'verified','0'),(396,155,'rating','4'),(397,155,'verified','0'),(370,135,'rating','2'),(371,135,'verified','0'),(372,136,'rating','3'),(373,136,'verified','0'),(374,137,'rating','1'),(375,137,'verified','0'),(376,138,'rating','2'),(377,138,'verified','0'),(378,140,'rating','2'),(379,140,'verified','0'),(380,143,'rating','4'),(381,143,'verified','0'),(382,145,'rating','2'),(383,145,'verified','0'),(384,146,'rating','3'),(385,146,'verified','0'),(386,147,'rating','3'),(387,147,'verified','0'),(388,148,'rating','2'),(389,148,'verified','0'),(390,149,'rating','4'),(391,149,'verified','0'),(392,150,'rating','2'),(393,150,'verified','0'),(506,507,'rating','2'),(507,507,'verified','0'),(508,508,'rating','2'),(509,508,'verified','0'),(510,509,'rating','2'),(511,509,'verified','0'),(512,510,'rating','4'),(513,510,'verified','0'),(514,511,'rating','3'),(515,511,'verified','0'),(516,512,'rating','4'),(517,512,'verified','0'),(518,513,'rating','4'),(519,513,'verified','0'),(520,514,'rating','2'),(521,514,'verified','0'),(522,515,'rating','2'),(523,515,'verified','0'),(524,516,'rating','1'),(525,517,'rating','2'),(526,516,'verified','0'),(527,517,'verified','0'),(528,519,'rating','3'),(529,519,'verified','0'),(530,520,'rating','4'),(531,520,'verified','0'),(532,521,'rating','2'),(533,521,'verified','0'),(534,522,'rating','1'),(535,522,'verified','0'),(536,523,'rating','1'),(537,523,'verified','0'),(538,524,'rating','2'),(539,524,'verified','0'),(540,525,'rating','1'),(541,525,'verified','0'),(542,526,'rating','2'),(543,526,'verified','0'),(544,527,'rating','1'),(545,527,'verified','0'),(546,528,'rating','3'),(547,528,'verified','0'),(650,573,'rating','5'),(651,573,'verified','0'),(648,572,'rating','2'),(649,572,'verified','0'),(646,571,'rating','4'),(647,571,'verified','0'),(644,570,'rating','3'),(645,570,'verified','0'),(642,569,'rating','4'),(643,569,'verified','0'),(640,568,'rating','2'),(641,568,'verified','0'),(638,567,'rating','2'),(639,567,'verified','0'),(636,566,'rating','1'),(637,566,'verified','0'),(634,563,'rating','3'),(635,563,'verified','0'),(588,532,'rating','2'),(589,532,'verified','0'),(590,533,'rating','1'),(591,533,'verified','0'),(592,534,'rating','1'),(593,534,'verified','0'),(594,535,'rating','1'),(595,535,'verified','0'),(596,536,'rating','4'),(597,536,'verified','0'),(598,537,'rating','1'),(599,537,'verified','0'),(600,538,'rating','2'),(601,538,'verified','0'),(602,539,'rating','4'),(603,539,'verified','0'),(604,540,'rating','3'),(605,540,'verified','0'),(606,541,'rating','2'),(607,541,'verified','0'),(608,542,'rating','3'),(609,542,'verified','0'),(610,543,'rating','1'),(611,543,'verified','0'),(612,546,'rating','1'),(613,547,'rating','4'),(614,546,'verified','0'),(615,547,'verified','0'),(616,548,'rating','1'),(617,548,'verified','0'),(618,551,'rating','1'),(619,551,'verified','0'),(620,554,'rating','2'),(621,554,'verified','0'),(622,555,'rating','4'),(623,555,'verified','0'),(624,556,'rating','1'),(625,556,'verified','0'),(626,557,'rating','4'),(627,557,'verified','0'),(628,558,'rating','1'),(629,558,'verified','0'),(630,559,'rating','1'),(631,559,'verified','0'),(632,560,'rating','4'),(633,560,'verified','0');
/*!40000 ALTER TABLE `wprl_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_comments`
--

DROP TABLE IF EXISTS `wprl_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=586 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_comments`
--

LOCK TABLES `wprl_comments` WRITE;
/*!40000 ALTER TABLE `wprl_comments` DISABLE KEYS */;
INSERT INTO `wprl_comments` VALUES (9,247,'WooCommerce','woocommerce@remoterangler.com','','','2018-07-09 08:51:47','2018-07-09 08:51:47','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(104,183,'Richardjen','kicars.warminster@gmail.com','','92.38.162.17','2019-01-28 23:07:50','2019-01-28 23:07:50','Hey an excitingpresent \r\n Fair-minded click \r\nhttp://bit.ly/2S6snj9',0,'spam','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36 OPR/49.0.2725.47','review',0,0),(8,217,'Remote Rangler','admin@remoterangler.com','','','2018-06-09 20:23:52','2018-06-09 20:23:52','Order status changed by bulk edit: Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0),(3,196,'WooCommerce','woocommerce@remoterangler.com','','','2018-05-01 18:30:48','2018-05-01 18:30:48','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(4,196,'WooCommerce','woocommerce@remoterangler.com','','','2018-05-01 18:36:53','2018-05-01 18:36:53','Payment refunded via IPN. Order status changed from Processing to Refunded.',0,'1','WooCommerce','order_note',0,0),(5,204,'WooCommerce','woocommerce@remoterangler.com','','','2018-05-08 01:58:01','2018-05-08 01:58:01','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(6,204,'Remote Rangler','admin@remoterangler.com','','','2018-05-08 02:57:14','2018-05-08 02:57:14','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0),(7,217,'WooCommerce','woocommerce@remoterangler.com','','','2018-05-21 22:10:05','2018-05-21 22:10:05','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(11,248,'WooCommerce','woocommerce@remoterangler.com','','','2018-07-22 15:15:58','2018-07-22 15:15:58','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(12,249,'WooCommerce','woocommerce@remoterangler.com','','','2018-08-02 11:27:49','2018-08-02 11:27:49','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(13,249,'Remote Rangler','admin@remoterangler.com','','','2018-08-08 09:03:33','2018-08-08 09:03:33','Order status changed by bulk edit: Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0),(14,248,'Remote Rangler','admin@remoterangler.com','','','2018-08-08 09:03:35','2018-08-08 09:03:35','Order status changed by bulk edit: Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0),(15,247,'Remote Rangler','admin@remoterangler.com','','','2018-08-08 09:03:36','2018-08-08 09:03:36','Order status changed by bulk edit: Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0),(16,196,'Remote Rangler','admin@remoterangler.com','','','2018-08-08 09:03:37','2018-08-08 09:03:37','Order status changed by bulk edit: Order status changed from Refunded to Completed.',0,'1','WooCommerce','order_note',0,0),(17,252,'WooCommerce','woocommerce@remoterangler.com','','','2018-08-22 17:21:02','2018-08-22 17:21:02','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(20,259,'WooCommerce','woocommerce@remoterangler.com','','','2018-09-24 22:53:46','2018-09-24 22:53:46','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(21,260,'WooCommerce','woocommerce@remoterangler.com','','','2018-10-01 15:55:51','2018-10-01 15:55:51','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(105,183,'GarryNeorb','pjruefle@yahoo.com','','207.189.0.73','2019-01-29 07:08:01','2019-01-29 07:08:01','Win iPhone X: http://go.fireontherim.com/winiphonexs22206',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','review',0,0),(106,183,'GarryNeorb','rborie@msn.com','','185.189.113.38','2019-01-30 21:40:21','2019-01-30 21:40:21','The Best Cryptocurrency to Invest in 2019: https://arill.us/16109',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','review',0,0),(107,183,'GarryNeorb','hotchickgurl_09@yahoo.com','','185.17.149.161','2019-01-31 17:58:27','2019-01-31 17:58:27','Paid Surveys: Earn $30,000 Or More Per Week: https://tinyurl.com/ydhh3447',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(108,183,'GarryNeorb','dukir@hotmail.com','','185.17.149.161','2019-02-01 20:45:28','2019-02-01 20:45:28','$15,000 a month (30mins “work” lol): http://valeriemace.co.uk/1320849',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','review',0,0),(109,283,'WooCommerce','woocommerce@remoterangler.com','','','2019-02-05 19:06:23','2019-02-05 19:06:23','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(27,261,'WooCommerce','woocommerce@remoterangler.com','','','2018-11-05 21:46:21','2018-11-05 21:46:21','Order status changed from Pending payment to Failed.',0,'1','WooCommerce','order_note',0,0),(111,183,'Josephnew','bridget.a.davidson@gmail.com','','92.38.162.19','2019-02-06 12:19:28','2019-02-06 12:19:28','Hi a virtuousoffers \r\n To moderate click on the link downstairs  \r\nhttp://bit.ly/2S4O4QC',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; rv:31.0) Gecko/20100101 Firefox/31.0','review',0,0),(112,183,'ChrisGlott','lyonsyjd@gmail.com','','194.99.105.20','2019-02-10 10:52:13','2019-02-10 10:52:13','Hey Kind information ! an stimulatingoffers \r\n To qualify click on the link under the sun  \r\nhttp://bit.ly/2S8uqTG',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','review',0,0),(31,262,'WooCommerce','woocommerce@remoterangler.com','','','2018-11-13 01:08:53','2018-11-13 01:08:53','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(32,263,'WooCommerce','woocommerce@remoterangler.com','','','2018-11-13 13:06:28','2018-11-13 13:06:28','Order status changed from Pending payment to Failed.',0,'1','WooCommerce','order_note',0,0),(128,286,'WooCommerce','woocommerce@remoterangler.com','','','2019-03-18 22:26:19','2019-03-18 22:26:19','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(129,89,'Karen DOLLISON','kidollison1@gmail.com','','63.142.229.131','2019-03-18 22:38:06','2019-03-18 22:38:06','I just received my first RemoteRangler with three ports. I love this! Before I wrote this review, I\'ve already ordered a second one for my bedroom!!! Thanks for this wonderful device!',0,'1','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-N950U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36','review',0,0),(130,183,'GeorgeLiani','stephenBow@gmail.com','','95.154.200.187','2019-03-19 00:39:56','2019-03-19 00:39:56','We offer you the opportunity to advertise your products and services. \r\nDear Sir / Madam Behold is  a good offer for you. I can send your commercial offers or messages through feedback forms. The advantage of this method is that the messages sent through the feedback forms are included in the white list. This method increases the chance that your message will be read. Mailing is made in the same way as you received this message. \r\n \r\nSending via Feedback Forms to any domain zones of the world. (more than 1000 domain zones.). \r\nThe cost of sending 1 million messages for any domain zone of the world is $ 49 instead of $ 99. \r\nDomain zone .com - (12 million messages sent) - $399 instead of $699 \r\nAll domain zones in Europe- (8 million messages sent) - $ 299 instead of $599 \r\nAll sites in the world (25 million messages sent) - $499 instead of $999 \r\nDomain zone .de - (2 million messages sent) - $99 instead of $199 \r\nDomain zone .uk - (1.5 million messages sent) - $69 instead of $139 \r\nDomain zone .nl - (700 000 sent messages) - $39 instead of $79 \r\n \r\nIn the process of sending messages, we do not violate the rules of GDRP. \r\nDiscounts are valid until March 25. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype – FeedbackForm2019 \r\nEmail - FeedbackForm2019@gmail.com \r\n \r\nThanks for reading.',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','review',0,0),(37,265,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-06 17:37:39','2018-12-06 17:37:39','Payment pending (verify). Order status changed from Pending payment to On hold.',0,'1','WooCommerce','order_note',0,0),(43,267,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-10 22:30:21','2018-12-10 22:30:21','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(44,268,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-10 22:30:21','2018-12-10 22:30:21','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(45,267,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-11 19:52:18','2018-12-11 19:52:18','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(46,267,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-11 19:52:18','2018-12-11 19:52:18','Order status changed from Cancelled to Processing.',0,'1','WooCommerce','order_note',0,0),(50,269,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-19 16:05:48','2018-12-19 16:05:48','Order cancelled by customer. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(51,270,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-19 16:10:48','2018-12-19 16:10:48','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(52,270,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-19 16:11:03','2018-12-19 16:11:03','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(53,271,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-19 16:15:13','2018-12-19 16:15:13','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(54,271,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-19 16:15:29','2018-12-19 16:15:29','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(55,276,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-23 09:08:39','2018-12-23 09:08:39','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(132,183,'CarrieDom','polis.fonaewrdfrgew32f@yandex.com','','31.184.238.190','2019-03-22 01:14:46','2019-03-22 01:14:46','Carrie Underwood is my favourite US contry singer. She is young, beautiful and charming woman in her 30s. Her strong voice takes me away from all issues of this planet and I can enjoy my life and listen songs created by her mind. Now the singer is on a Cry Pretty 360 Tour started in May of 2019. The concerts scheduled for this year, up to the 31st of October. Tickets are available for all men and women with different income. If you love contry music, then you must visit at least one of her concert. All tour dates are available at the <a href=\"https://carrieunderwoodtour.com\" rel=\"nofollow\">Carrie Underwood tour Lafayette</a>. Open the website and make yourself familiar with all Carrie Underwood concerts in 2019!',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','review',0,0),(58,277,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-27 01:05:52','2018-12-27 01:05:52','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(59,277,'WooCommerce','woocommerce@remoterangler.com','','','2018-12-27 01:06:04','2018-12-27 01:06:04','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(131,183,'CarrieDom','polis.fonaewrdfrgew32f@yandex.com','','31.184.238.190','2019-03-21 02:09:07','2019-03-21 02:09:07','Carrie Underwood is my favourite US singer. She is young, beautiful and charming woman in her 30s. Her strong voice takes me away from all troubles of this planet so I start enjoy my life and listen songs created by her mind. Now the singer is on a Cry Pretty 360 Tour started in May of 2019. The concerts scheduled for this year, up to the 31st of October. Ticket prices are moderate and available for all men and women with different income. If you are a country music lover as me, then you must visit at least one Carrie\'s concert. All tour dates are available at the <a href=\"https://carrieunderwoodtour.com\" rel=\"nofollow\">Carrie Underwood tour Toronto</a>. Visit the website and make yourself familiar with all powerful Carrie Underwood concerts in 2019!',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','review',0,0),(127,286,'WooCommerce','woocommerce@remoterangler.com','','','2019-03-18 22:26:09','2019-03-18 22:26:09','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(110,283,'WooCommerce','woocommerce@remoterangler.com','','','2019-02-05 19:06:46','2019-02-05 19:06:46','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(103,183,'GarryNeorb','emmakaye@msn.com','','207.189.0.73','2019-01-27 21:08:14','2019-01-27 21:08:14','Forex Trader predicts and makes $10,000 less than 3 hours: http://profit.bitcoin-forex-invest.com/online-quiz-games-win-cash-prizes.php',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','review',0,0),(102,183,'GarryNeorb','msteeson3@yahoo.com','','207.189.0.73','2019-01-27 06:41:05','2019-01-27 06:41:05','Sexy girls for the night in your town: https://arill.us/bestsexygirlsxxx23349',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','review',0,0),(114,183,'sondueim','vickybeltskyorlando1989@gmail.com','','199.115.117.107','2019-02-25 23:38:46','2019-02-25 23:38:46','Good man! \r\nPhiladelphia Holistic Clinic quickly became the leading Acupuncture, homeopathy, and hypnotherapy center in the metro area. Dr. Tsan – Medical Director of the clinic has 40+ years of academic and practical experience in Internal Medicine (OB-GYN and Naturopathy). Victor Tsan, MD – an internationally recognized specialist in Traditional Chinese Medicine, Classical Homeopathy, and Clinical Hypnotherapy graduated from the most famous medical schools in Europe, Asia, and the USA. \r\nIn our philosophy, each patient is a unique entity and not a case of a particular disease. The disease is a result of the bodily, psychic, public and ecological discrepancy. Thus, natural treatment becomes effective when all the fragments of human being converted into an appropriate set of balances. The holistic treatment techniques (Traditional Chinese Medicine, Homeopathic Medicine, Clinical Hypnotherapy, and Reiki, we teach your body systems to heal itself. \r\nPhiladelphia Holistic Clinic accommodates five major departments: \r\nPhiladelphia Acupuncture Clinic \r\nPhiladelphia Homeopathic Clinic \r\nPhiladelphia Hypnotherapy Clinic \r\nPhiladelphia Addiction Center \r\nPhiladelphia Weight Loss Clinic \r\nDetails on this link. http://bit.ly/2U6ggjL \r\n \r\nThanks for reading.',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','review',0,0),(62,281,'WooCommerce','woocommerce@remoterangler.com','','','2019-01-01 02:04:38','2019-01-01 02:04:38','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(63,281,'WooCommerce','woocommerce@remoterangler.com','','','2019-01-01 02:04:49','2019-01-01 02:04:49','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(115,183,'MiguelMub','cischee@yahoo.com','','82.102.18.147','2019-02-28 21:29:29','2019-02-28 21:29:29','Do not miss the chance to win a new iPhone X: http://corta.co/YouWinIphoneX87311',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(116,183,'Philipvow','talianayers@gmail.com','','185.230.127.100','2019-03-01 21:16:18','2019-03-01 21:16:18','Hy there,  What we have here is , an remarkableprovide \r\n To be fit click on the unite downstairs  \r\n \r\nhttp://servicerubin.ru',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','review',0,0),(117,183,'MiguelMub','lourdes.pablo@yahoo.com','','82.102.18.147','2019-03-02 23:42:42','2019-03-02 23:42:42','Get the new iPhone X for free with this giveaway: http://www.vkvi.net/investcrypto50010',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','review',0,0),(118,183,'MiguelMub','cosco16@hotmail.com','','82.102.18.147','2019-03-04 17:17:06','2019-03-04 17:17:06','Sexy girls for the night in your town: http://www.lookweb.it/bestsexygirldating77708',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','review',0,0),(119,183,'MiguelMub','earlndavenport2002@yahoo.com','','82.102.18.147','2019-03-05 21:28:17','2019-03-05 21:28:17','The best girls for sex in your town: https://lil.ink/bestsexygirldating92737',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','review',0,0),(120,183,'MiguelMub','jjlatina@hotmail.com','','82.102.18.147','2019-03-06 06:17:57','2019-03-06 06:17:57','The best girls for sex in your town: http://go.fireontherim.com/bestsexygirlsdating93117',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','review',0,0),(121,183,'Jamesjence','formforsome@yandex.ua','','185.212.171.100','2019-03-07 04:37:53','2019-03-07 04:37:53','Hello! \r\n \r\nDo you know how to get +10% in bitcoins during your coffee break? \r\nSpend this time with benefits. \r\n \r\nMake fast donation to http://dc-btc.pro and get automatically payout to your wallet after two days. \r\n \r\nFor example, you donate 100$ in btc today, so you automatically get 110$ day after tomorrow. \r\nReward will come directly to your btc wallet. \r\n \r\nTry and get reward! \r\n \r\nBowered by Blockchain technology.',0,'spam','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(122,183,'MiguelMub','gadrapp@aol.com','','185.17.149.147','2019-03-07 06:49:22','2019-03-07 06:49:22','Enquetes remunerees: gagnez 3 000 € ou plus par semaine: https://lil.ink/cryptoinvestbitcoin65053',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','review',0,0),(123,183,'BETTE','replay@web-experts.net','','31.13.190.254','2019-03-09 19:41:03','2019-03-09 19:41:03','~~&gt;&gt; http://bit.ly/2SYH58s  -- On this video we revealed a $1.5M formula (generated online in the last 5 months... without a product!) and broke it all down step by step.',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','review',0,0),(124,183,'Davidsar','howardlevy17@gmail.com','','109.248.149.35','2019-03-10 01:35:58','2019-03-10 01:35:58','Confirm that you are not a robot, and  There is nicebonus for you. https://drive.google.com/file/d/1TbuAUTL3jkxD_INmklUrLEsxRz8_ZMBg/preview',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','review',0,0),(79,183,'Dan deaton','dandeaton04@gmail.com','','72.172.53.68','2019-01-12 12:05:17','2019-01-12 12:05:17','Baught rangler and the elastic straps broke when I put it on the remote. Remote was not large, typical size.',0,'spam','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1','review',0,0),(125,285,'WooCommerce','woocommerce@remoterangler.com','','','2019-03-18 01:26:41','2019-03-18 01:26:41','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(126,285,'WooCommerce','woocommerce@remoterangler.com','','','2019-03-18 01:26:51','2019-03-18 01:26:51','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(113,183,'RobertWoumn','ghinilambor700@yahoo.com','','92.38.162.14','2019-02-16 19:09:00','2019-02-16 19:09:00','Hello! \r\n \r\nWe spend third part of our lives at work. How to spend this time with benefit? \r\n \r\nYou can grow bitcoins by 10% spending 5 minutes a day! \r\nQuicker than a cup of coffee \r\n \r\nhttp://dcbtc.info increases bitcoins by 10% in 48 hours. \r\nYou will automatically make a profit on your bitcoin wallet. \r\n \r\nStart participating and make a profit! \r\nGuaranteed by the blockchain technology!',0,'spam','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','review',0,0),(81,183,'Jamesanapy','taung@hotmail.com','','46.166.143.100','2019-01-13 08:46:37','2019-01-13 08:46:37','What\'s the easiest way to earn $30000 a month: https://lil.ink/bestinvestsystems29728',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','review',0,0),(82,183,'Jamesanapy','kadedevlin@comcast.net','','46.166.143.100','2019-01-14 06:19:17','2019-01-14 06:19:17','Fick heute Nacht saftige Frau in deiner Stadt: http://yourls.site/bestsexygirlsinyourcity18226',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','review',0,0),(83,183,'Jamesanapy','llyonel@hotmail.com','','46.166.143.100','2019-01-15 06:15:27','2019-01-15 06:15:27','Finde eine hei?e Frau fur guten Sex in deiner Stadt: https://lil.ink/bestsexygirlsinyourcity34895',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','review',0,0),(84,183,'Jamesanapy','cecil_joseph@hotmail.com','','46.166.143.100','2019-01-15 22:06:59','2019-01-15 22:06:59','Comment gagner 3000 € Fast Fast Money | Le budget occupe: http://tropaadet.dk/bestinvestsystem32197',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','review',0,0),(85,183,'Stephenlurom','monika.dobsa17@gmail.com','','185.253.96.200','2019-01-16 16:14:43','2019-01-16 16:14:43','Hey Good information ! an remarkableprovide \r\n Decent click on the connection under to qualify  \r\nhttp://bit.ly/2SUxjor',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:53.0) Gecko/20100101 Firefox/53.0','review',0,0),(86,183,'Jamesanapy','hjodijean@optonline.net','','46.166.143.100','2019-01-17 05:55:14','2019-01-17 05:55:14','Comment gagner 3000 € par jour: http://www.lookweb.it/bestinvestsystem83384',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','review',0,0),(87,183,'Stephenlurom','angelantiques63@gmail.com','','185.253.96.200','2019-01-18 05:38:50','2019-01-18 05:38:50','Hey What we be subjected to here is , superioroffer \r\n Just click on the vinculum underneath to mitigate  \r\nhttp://bit.ly/2SUQSwW',0,'spam','Mozilla/5.0 (Windows NT 5.0; Win64; rv:39.1) Gecko/20100101 Firefox/39.1','review',0,0),(88,183,'Jamesanapy','aroutly@homtail.com','','185.104.184.126','2019-01-18 15:25:53','2019-01-18 15:25:53','Bezahlte Umfragen: Verdienen Sie € 3.000 oder mehr pro Woche: https://xxs.yt/5500019228',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(89,183,'Edmundevinc','mpbrownmassage@gmail.com','','85.206.165.6','2019-01-18 22:53:26','2019-01-18 22:53:26','Hey a credibleoffer \r\n Upstanding click   bit.ly/2STW9VF',0,'spam','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36 OPR/49.0.2725.47 (Edition Yx)','review',0,0),(90,183,'Jamesanapy','petesmt@aol.com','','207.189.0.73','2019-01-19 12:20:55','2019-01-19 12:20:55','Best cryptocurrency to Invest 2019: http://freest.at/BESTINVESTMETHOD5500079825',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(91,183,'KelDype','kelswatly@emaill.host','','5.188.44.20','2019-01-20 03:57:41','2019-01-20 03:57:41','Alli Pills Recall Purchasing Viagra Without Prescription Cialis Compresse 5 Mg  <a href=\"http://cthosts.net\" rel=\"nofollow\">tadalafil cialis from india</a> Cialis 20 Mg Sale Viagra Pfizer Achat En Aubervilliers Need Synthroid No Rx  Does Amoxicillin Cause Leg Cramps Loading Cephalexin  <a href=\"http://sildenaf100.com\" rel=\"nofollow\">viagra online</a> Online Viagra Genuine Levitra A Precios Baratos Zofran  20mg Generic Levitra Order Online overnight Pharm Brand Cialis Kamagra To Overcome Impotence Issue  <a href=\"http://fzlaka.com\" rel=\"nofollow\">cialis tablets for sale</a> Provera Get Low Price  Relief Of Sinus Infection With Amoxicillin Amoxil Natural Replacement Cialis Pas Cher Livraison Rapide  <a href=\"http://aaost.com\" rel=\"nofollow\">order cialis online</a> Order Levothyroxine No Prescription  Viagra 100mg Testberichte  <a href=\"http://viacheap.com\" rel=\"nofollow\">viagra online</a> Amazon Propranolol Cialis 5 Mg Dosi  Amoxicillin Side Effect Hydrochlorothiazide Pills  <a href=\"http://byrxbox.com\" rel=\"nofollow\">viagra</a> Beipackzettel Viagra',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(92,183,'Jamesanapy','greaterguy@yahoo.com','','207.189.0.73','2019-01-20 22:05:42','2019-01-20 22:05:42','Forex Trader predicts and makes $10,000 less than 3 hours: http://awalsh.com/bestforex37526',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','review',0,0),(93,183,'Jamesanapy','ranger28days@yahoo.com','','207.189.0.73','2019-01-21 21:52:22','2019-01-21 21:52:22','Meet sexy girls in your city: https://xxs.yt/bestforex89063',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','review',0,0),(94,183,'aldridge','19th_honnie_@yahoo.com','','178.175.142.132','2019-01-21 22:43:29','2019-01-21 22:43:29','Hello! There is a best offers for you.  Try and be our next winner. http://bit.ly/2J7m5c8',0,'spam','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','review',0,0),(95,183,'Waynehix','daviderchi@gmail.com','','91.185.201.69','2019-01-22 08:40:35','2019-01-22 08:40:35','Hey Passable information ! fineoffers \r\n To qualify click on the unite downstairs  \r\nhttp://bit.ly/2S257mu',0,'spam','Mozilla/5.0 (Windows NT 8.1; Win64; rv:31.0) Gecko/20100101 Firefox/31.0','review',0,0),(96,183,'Jamesanapy','crmears@hotmail.com','','207.189.0.73','2019-01-22 23:10:04','2019-01-22 23:10:04','Meet sexy girls in your city: https://tinyurl.com/bestforex-86596',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','review',0,0),(97,183,'DennisViGaf','joshdodd@yahoo.com','','207.189.0.73','2019-01-23 21:48:37','2019-01-23 21:48:37','Encuentra una chica para pasar la noche en tu ciudad.: http://valeriemace.co.uk/bestforex82854',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','review',0,0),(98,183,'Douglasdiero','miloumeme@yahoo.com','','207.189.0.73','2019-01-24 08:40:52','2019-01-24 08:40:52','Find yourself a girl for the night in your city: http://www.abcagency.se/adultdating60929',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','review',0,0),(99,183,'Douglasdiero','cpolchinski@hotmail.com','','207.189.0.73','2019-01-25 06:15:05','2019-01-25 06:15:05','Find yourself a girl for the night in your city: https://xxs.yt/adultdating99587',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(100,183,'Curtiscluts','cdrcroofing@gmail.com','','95.174.65.163','2019-01-25 13:32:34','2019-01-25 13:32:34','Hy there,  What we accept here is , an importantoblation \r\n Are you in?  \r\nhttp://bit.ly/2S8ZMcU',0,'spam','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0','review',0,0),(101,183,'GarryNeorb','cl8@hotmail.com','','207.189.0.73','2019-01-26 06:59:10','2019-01-26 06:59:10','Trouvez-vous une fille pour la nuit dans votre ville: http://tropaadet.dk/bestsexygirlsxxx59425',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','review',0,0),(133,183,'CarrieDom','polis.fonaewrdfrgew32f@yandex.com','','31.184.238.190','2019-03-23 15:33:20','2019-03-23 15:33:20','Carrie Underwood is my favourite country singer. She is young, beautiful and charming female in her 30s. Her voice takes me away from all issues of this planet and I start enjoy my life and listen songs created by her. Now she is on a Cry Pretty 360 Tour started in May of 2019. The concerts scheduled for this year, up to the 31st of October. Ticket prices are moderate and available for all men and women with different income. If you are a country music lover as me, then you must visit at least one of her concert. All tour dates are available at the <a href=\"https://carrieunderwoodtour.com\" rel=\"nofollow\">Carrie Underwood tour dates</a>. Open the website and make yourself familiar with all powerful Carrie Underwood concerts in 2019!',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','review',0,0),(134,183,'viagra from canada','uloxbawatch@onet.pl','','31.184.238.121','2019-03-24 11:28:08','2019-03-24 11:28:08','I know this if off topic but I\'m looking into starting my own weblog and was curious what all is required to get set up? I\'m assuming having a blog like yours would cost a pretty penny? I\'m not very web smart so I\'m not 100% positive. Any suggestions or advice would be greatly appreciated. Thanks',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','review',0,0),(135,183,'PrestonLor','savemoney@takecreditcardsfree.com','','89.238.165.136','2019-03-25 15:57:39','2019-03-25 15:57:39','Hello I was wanting to see, if you wanted to stop paying fees to accept credit cards? I am with http://www.TakeCreditCardsFree.com and with us, you can take every type of credit card, you get your money deposited within 2 business days and you pay 0% plus $0.00 per transaction, the only thing you pay is a $25 per month account fee, and then you just use your existing terminal, or buy/lease one from us. What’s the catch? The catch is, instead of charging you, your customer is charged a small convenience fee via the credit card machine we send you,  of just 40 cents per every $10 to which the customer is spending and that’s it. Would you be interested in this? If so go to our website or call/text us at 720-791-3210 or go to our website http://www.takecreditcardsfree.com',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','review',0,0),(136,183,'RobertNew','instaresultsteam@gmail.com','','185.93.180.43','2019-03-25 20:41:29','2019-03-25 20:41:29','Hi there, \r\n \r\nI came across your website and wanted to get in touch. \r\n \r\nI run an Instagram Growth Service helping thousands of clients to grow their Instagram significantly with REAL and RELEVANT followers, through organic marketing techniques. \r\n \r\nYou can learn more about how our service works here: \r\nhttp://bit.ly/instagram-results - interesting right? \r\n \r\nI wanted to reach out to hear if our Instagram Growth Service could be of any interest to you? \r\n \r\nNote, we are NOT selling fake followers and advise you to never buy fake followers as it doesn’t bring any real value to your business. What we are doing is a consistent, authentic approach to interacting with real people who are in your target audience to get their attention and drive them to your page. \r\n \r\nThe results that our clients see are typically: \r\n10,000 new monthly impressions \r\n400-1500 new, real and targeted followers per month \r\nIncreased engagement, website traffic &amp; sales. \r\n \r\nThe pricing for our service is only $67/mo and we offer a 30-day money back guarantee for the first month to let you try it without any risk. \r\n \r\nIf you’re ready to boost your Instagram results risk-free, you can sign up here to get started: \r\nhttp://bit.ly/instagram-signup - It’s 100% safe &amp; secure. \r\n \r\nIf this is not for you, no problem at all and thank you for your attention. \r\n \r\nIf you’re interested in learning more, please contact us on the email below: \r\nEmail: instaforce5@gmail.com',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(137,183,'BoostYourNetwork','byntest2019@gmail.com','','5.253.204.29','2019-03-26 10:31:28','2019-03-26 10:31:28','If you are experiencing traffic problems and need more views and reach on your product or service, consider social media marketing through influencer traffic on Snapchat. It’s cheap, simple, and straight forward. All we do is post your ad on an influencer’s page that matches your business needs (niche/audience). This traffic is known to convert, and our company is very experienced in social media marketing. We also offer posts on influencer accounts on Instagram feeds and stories. These also have the reach of thousands to millions of views. If you want more information, contact us now at contact@boostyournetwork.com . We would love to work with you and your company and are excited to help and watch the growth of your business. \r\n \r\nThank you, \r\nBoost Your Network \r\nEmail: contact@boostyournetwork.com \r\nWebsite: https://BoostYourNetwork.com',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','review',0,0),(138,183,'Williamhex','office.pivotaluk@gmail.com','','193.148.19.184','2019-03-26 18:33:24','2019-03-26 18:33:24','I was trying to reach your CTO or Teach lead. We already worked with few companies in your space. \r\nWe are a developer-founded, developer-run firm, specialized in dedicated software teams. \r\n \r\nOur value: \r\n1.    Hire top developers - quality is our outcome. \r\n2.    In 72 hours, you can find engineers for your tech stack. \r\n3.    A huge global pool of diverse developers. \r\n4.    Fixed budgeting based on the initial planning so that you would not go over the budget. \r\n5.    Full time, remote extension of your team. \r\n \r\nBefore assigning the developers, we always provide our clients with resumes, references, and also we organize interviews so that you would be certain about who you are hiring. \r\n \r\nWe offer 2-weeks trial (pay only if satisfied) \r\n \r\nYou can find more about our company by visiting our website: https://pivotalscale.com \r\nor book a meeting with us at  https://calendly.com/developmentservices',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(139,288,'WooCommerce','woocommerce@remoterangler.com','','','2019-03-26 23:33:11','2019-03-26 23:33:11','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(140,183,'Davidsibly','luarie.pevitt@gmail.com','','185.93.3.113','2019-03-27 18:44:38','2019-03-27 18:44:38','Dear Sir/Madam, \r\n \r\nI have an important transaction that will benefit us both.i need your help in this transaction as you shall be rewarded for your help and efforts. \r\nGet back to me on my private email for more details: nuoshad28@gmail.com \r\n \r\nwaiting for your reply. \r\n \r\nThanks \r\nIan',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','review',0,0),(141,288,'WooCommerce','woocommerce@remoterangler.com','','','2019-03-27 20:24:50','2019-03-27 20:24:50','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(142,288,'WooCommerce','woocommerce@remoterangler.com','','','2019-03-27 20:25:00','2019-03-27 20:25:00','Order status changed from Cancelled to Processing.',0,'1','WooCommerce','order_note',0,0),(143,183,'Terryamemn','pete-gvm-affiliate@gmail.com','','190.2.149.26','2019-03-29 14:48:10','2019-03-29 14:48:10','My name is Pete and I want to share a proven system with you that makes me money while I sleep! This system allows you to TRY the whole thing for F R E E for a whole 30 days! That\'s right, you can finally change your future without giving up any sensitive information in advance! I signed up myself just a while ago and I\'m already making a nice profit. \r\n \r\nIn short, this is probably the BEST THING THAT EVER HAPPENED TO YOU IF YOU TAKE ACTION NOW!!! \r\n \r\nIf you\'re interested in knowing more about this system, go to http://globalviralmarketing.com/?ref=qkgWOPkN5RoC1NWh and try it out. Again, it’s FREE! \r\n \r\nYou can thank me later \r\n \r\n/Pete',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','review',0,0),(144,289,'WooCommerce','woocommerce@remoterangler.com','','','2019-04-01 01:54:24','2019-04-01 01:54:24','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(145,183,'aseynevuqo','febebas@aserrpp.com','','62.210.83.206','2019-04-02 01:43:27','2019-04-02 01:43:27','http://theprettyguineapig.com/amoxicillin/ - Amoxicillin <a href=\"http://theprettyguineapig.com/amoxicillin/\" rel=\"nofollow\">Amoxicillin</a> epu.anpc.remoterangler.com.pss.hy http://theprettyguineapig.com/amoxicillin/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','review',0,0),(146,183,'iwaclelov','egutoami@aserrpp.com','','62.210.83.206','2019-04-02 01:55:11','2019-04-02 01:55:11','http://theprettyguineapig.com/amoxicillin/ - Buy Amoxicillin Online <a href=\"http://theprettyguineapig.com/amoxicillin/\" rel=\"nofollow\">18</a> qvu.jefl.remoterangler.com.sjr.ee http://theprettyguineapig.com/amoxicillin/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','review',0,0),(147,183,'Kevinmen','thum8.tom@yandex.com','','172.255.125.130','2019-04-08 11:43:46','2019-04-08 11:43:46','Do you use whey protein isolate?  Egg protein? \r\n \r\nBuy 3lbs-300lbs at bulk factory direct prices with free FedEx shipping! \r\n \r\nHighest quality.  BEST possible taste.  No fillers or additives. \r\n \r\nhttps://newworldprotein.com/collections/proteins/products/100-whey-protein-isolate?variant=12808745746545',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(148,183,'AmandaSib','mila_22@gmail.com','','31.184.252.69','2019-04-10 08:39:20','2019-04-10 08:39:20','Hello, I want to work in your company on a voluntary basis, can you offer me anything? \r\na little about me:https://about.me/ruthmcfarlane/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','review',0,0),(149,183,'BlakeCyday','lvfeebback123@gmail.com','','82.102.31.231','2019-04-13 02:53:29','2019-04-13 02:53:29','We are often up to 50%-60% less than other VoIP providers. \r\n \r\nOur VoIP pricing method is really different. \r\n \r\nWe offer free SIP/VoIP trunks and just charge for minutes.  Don\'t worry, our service and quality is outstanding since 2009 (10 years)! \r\n \r\nTake a look at our pricing and contact us to set up your account. \r\nUsage is month to month, with no contract jail! \r\n \r\nhttps://legacyvoip.com/pricing-unlimited-sip-trunks-with-bundled-minutes-reduce-cost-now \r\n \r\nTry us out.  You really won’t regret it! \r\n \r\nBusiness VoIP for premises based PBXs \r\nCloud Hosted PBXs \r\nCloud Hosted Call Centers \r\n \r\nWe support all SIP-able PBXs and phones. \r\n \r\nThank you, \r\n \r\nBob Green \r\nLegacy VoIP',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','review',0,0),(150,183,'EllGynC','ellMeam@zmail.website','','5.188.45.160','2019-04-19 17:02:53','2019-04-19 17:02:53','Cialis E Priapismo Propecia Segunda Mano  <a href=\"http://purchasecial.com\" rel=\"nofollow\">cialis cheapest online prices</a> Cialis Jetzt',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','review',0,0),(151,291,'WooCommerce','woocommerce@remoterangler.com','','','2019-04-19 17:17:57','2019-04-19 17:17:57','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(152,291,'WooCommerce','woocommerce@remoterangler.com','','','2019-04-19 17:18:10','2019-04-19 17:18:10','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(153,292,'WooCommerce','woocommerce@remoterangler.com','','','2019-04-20 01:20:05','2019-04-20 01:20:05','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(154,183,'VidmDom','ewrdfrgew32f@yandex.com','','31.184.238.190','2019-04-23 04:41:51','2019-04-23 04:41:51','Today almost every Internet user visits YT or any other service to upload and watch entertaining videos, free films and other video content. But sometimes you want to download a videofile and the service doesn\'t allow you to do it. That\'s where Vidmate App is coming to help you out. It helps you to get a video from may services, including YT, Facebook, Facebook and many other hosting services. To do this you just need to open video page and click \"download\". Plus, Vidmate is free of charge and very easy in use with your Android! Download Vidmate APK from <a href=\"https://vidmateapp.pro/apk/\" / rel=\"nofollow\">this website</a> now and start downloading your favourite movies to share them with your family!',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(155,183,'RobertPhisa','conciergexleads@gmail.com','','185.210.217.248','2019-04-26 04:11:25','2019-04-26 04:11:25','Hi, \r\n \r\nLet\'s see how we can achieve better advertising result for your business. \r\n \r\nI would like to start by sharing with you a case study of a local campaign we ran for a Burger King franchise. \r\nTheir budget was only $1200 and we got them $4,825 in value of sales! \r\n \r\nSee how we did it - Click here https://www.conciergedigitalleads.com/uploads/sYvnOSwp/SuccessStories-ReachFrequency-BurgerKing.pdf to download the Burger King case study \r\n \r\nOur company runs full-service Facebook Advertising campaigns with guaranteed results for as low as $375 for a one-off campaign. \r\n \r\nLet\'s schedule a quick call to see how we can get more clients for you on Facebook. \r\n \r\nOur process is super short and easy \r\n \r\n1.	We setup a 15min call in which we learn about your business \r\n2.	On the same call, we can design a campaign and start running \r\n3.	We do all the work – a 100% \r\n4.	You can try us with a very low budget \r\n \r\nLet’s talk today. Click here https://conciergeleads.youcanbook.me/ to Book a 15mins Free Strategy Consultation Now. \r\n \r\nAlso, you may want to see how we got a local Dairy Queen looking to increase distribution of their special \r\noffers and coupon in their market, 1,312 people saved the offer to claim it at the location and other success stories here https://www.conciergedigitalleads.com (scroll to the bottom of the page for case studies). \r\n \r\nClick here https://conciergeleads.youcanbook.me/ to Book a 15mins Free Strategy Consultation Today! \r\n \r\nLooking forward to talking with you. \r\nThanks, \r\n \r\nEmily Van Garderen \r\nClient Management Executive \r\nSkype: Concierge Leads \r\nconciergeseoleads@gmail.com \r\nT. 844-899-9770 \r\n5887 N 42ND Street Milwaukee WI 53209',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','review',0,0),(156,183,'Eduardojal','svetlanacol0sova@yandex.ua','','31.130.203.87','2019-04-26 07:17:51','2019-04-26 07:17:51','Hi remoterangler.com \r\nGrow your bitcoins by 10% per 2 days. \r\nProfit comes to your btc wallet automatically. \r\n \r\nTry  http://bm-syst.xyz \r\nit takes 2 minutes only and let your btc works for you! \r\n \r\nGuaranteed by the blockchain technology!',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','review',0,0),(157,183,'BryantVelty','cgorillamail@gmail.com','','141.98.100.67','2019-05-02 23:54:07','2019-05-02 23:54:07','Hi, remoterangler.com \r\n \r\nI\'ve been visiting your website a few times and decided to give you some positive feedback because I find it very useful. Well done. \r\n \r\nI was wondering if you as someone with experience of creating a useful website could help me out with my new site by giving some feedback about what I could improve? \r\n \r\nYou can find my site by searching for \"casino gorilla\" in Google (it\'s the gorilla themed online casino comparison). \r\n \r\nI would appreciate if you could check it out quickly and tell me what you think. \r\n \r\ncasinogorilla.com \r\n \r\nThank you for help and I wish you a great week!',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','review',0,0),(158,293,'WooCommerce','woocommerce@remoterangler.com','','','2019-05-04 01:18:27','2019-05-04 01:18:27','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(159,183,'Matthewgauro','plan.b.fundingoptions@gmail.com','','151.106.11.185','2019-05-04 15:13:00','2019-05-04 15:13:00','Hello from Plan B - Funding Options LLC \r\n \r\n \r\n*If you\'re thinking about starting your own business or if you need funding for most other reasons there\'s 3 things that you need to keep in mind. \r\n \r\n \r\n1. You need to make a well thought out plan, try to cover everything you want to accomplish and think of what could go wrong along the way. You could create a business plan and or executive summary to use as your guideline. As a rule, it’s best NOT to ask family or friends for money its best to use (other people’s money) a funding source that you have no personal relationship with. \r\n \r\n2.  Expect your plan to fail in part or full in many cases this will happen no matter how well you thought out your plan. Unforeseen obstacles and speed bumps often will come in your path that prevent your plans from going as you had projected. \r\n \r\n3.Always without exception have a (Plan B). And that\'s where we come in. We are your Plan B! \r\n \r\n*Please visit our website for details at:  https://www.planbfundingoptions.com \r\n \r\nEmail us for funding or questions  info@planbfundingoptions.com \r\n \r\n \r\nCall Us    : 949-682-9235 (California Office) \r\n \r\n \r\n**If you do not need funding at this time, perhaps you know someone who does. We Pay Referral Fees!!! See this link to the page on our website that explains what it means for you! http://www.planbfundingoptions.com/we-pay-referral-fees.html',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','review',0,0),(160,183,'Carmenmar','gunrussia@scryptmail.com','','185.94.189.152','2019-05-06 01:50:58','2019-05-06 01:50:58','25 charging traumatic pistols shooting automatic fire! Modified Makarov pistols with a silencer! Combat Glock 17 original or with a silencer! And many other types of firearms without a license, without documents, without problems! \r\nDetailed video reviews of our products you can see on our website. \r\nhttp://Gunrussia.pw \r\nIf the site is unavailable or blocked, email us at - Gunrussia@secmail.pro   or  Gunrussia@elude.in \r\nAnd we will send you the address of the backup site!',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','review',0,0),(161,294,'WooCommerce','woocommerce@remoterangler.com','','','2019-05-07 13:16:32','2019-05-07 13:16:32','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(162,183,'RobertNeini','angelaMimihasyvah@gmail.com','','87.101.94.76','2019-05-08 21:40:33','2019-05-08 21:40:33','Hi!  remoterangler.com \r\n \r\nWe present \r\n \r\nSending your business proposition through the Contact us form which can be found on the sites in the contact partition. Feedback forms are filled in by our application and the captcha is solved. The superiority of this method is that messages sent through feedback forms are whitelisted. This method raise the chances that your message will be read. Mailing is done in the same way as you received this message. \r\nYour  commercial proposal will be read by millions of site administrators and those who have access to the sites! \r\n \r\nThe cost of sending 1 million messages is $ 49 instead of $ 99. (you can select any country or country domain) \r\nAll USA - (10 million messages sent) - $399 instead of $699 \r\nAll Europe (7 million messages sent)- $ 299 instead of $599 \r\nAll sites in the world (25 million messages sent) - $499 instead of $999 \r\nThere is a possibility of FREE TEST MAILING. \r\n \r\n \r\nDiscounts are valid until May 10. \r\nFeedback and warranty! \r\nDelivery report! \r\nIn the process of sending messages we don\'t break the rules GDRP. \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype – FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com \r\nWhatsApp - +44 7598 509161 \r\nhttp://bit.ly/2WbvuFh \r\n \r\nBest wishes',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(163,183,'JosephBuife','maryam.g@arshon.com','','83.136.82.90','2019-05-09 06:15:06','2019-05-09 06:15:06','Hello Dear, remoterangler.com \r\nMy name is Maryam, I am the sales and marketing manager at Arshon Technology, we provide engineering and manufacturing services for any Electronic product. \r\nWe are able to deisgn any PCB and manufacture it in North America in a very cost efective way, we will beat any competitor quote on PCB and PCBA. \r\n \r\nSee our president message in below: https://youtu.be/jRlqM1LdKvA \r\n \r\nFeel free to reach us if you have any inquiry. \r\n \r\nBest Regards, \r\nMaryam \r\nSale and Marketing manager @ Arshon Technology Inc. \r\ninfo@arshon.com \r\n1(877)207-2349 \r\n \r\nThis message is submitted via your contact page. \r\n \r\n \r\nSite: https://www.arshon.com',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(164,183,'GeraldShomb','michaelEveno@gmail.com','','83.97.23.116','2019-05-17 18:22:30','2019-05-17 18:22:30','Hi Look what we get in the service of you! a seemlyoffering \r\n Simply click \r\n \r\nhttps://drive.google.com/file/d/1gddbMZ1Ium-zW7EumpwURY-Ts6K6TJ6j/preview',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','review',0,0),(165,183,'RobertNeini','angelaMimihasyvah@gmail.com','','87.101.94.126','2019-05-30 17:36:41','2019-05-30 17:36:41','Ciao!  remoterangler.com \r\n \r\nWe advance \r\n \r\nSending your business proposition through the feedback form which can be found on the sites in the contact section. Contact form are filled in by our program and the captcha is solved. The superiority of this method is that messages sent through feedback forms are whitelisted. This method improve the probability that your message will be open. Mailing is done in the same way as you received this message. \r\nYour  commercial proposal will be seen by millions of site administrators and those who have access to the sites! \r\n \r\nThe cost of sending 1 million messages is $ 49 instead of $ 99. (you can select any country or country domain) \r\nAll USA - (10 million messages sent) - $399 instead of $699 \r\nAll Europe (7 million messages sent)- $ 299 instead of $599 \r\nAll sites in the world (25 million messages sent) - $499 instead of $999 \r\nThere is a possibility of FREE TEST MAILING. \r\n \r\n \r\nDiscounts are valid until May 31. \r\nFeedback and warranty! \r\nDelivery report! \r\nIn the process of sending messages we don\'t break the rules GDRP. \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype – FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com \r\nWhatsApp - +44 7598 509161 \r\nhttp://bit.ly/2W8OlB1 \r\n \r\nThank you for your attention.',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','review',0,0),(166,297,'WooCommerce','woocommerce@remoterangler.com','','','2019-06-03 05:14:37','2019-06-03 05:14:37','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(167,298,'WooCommerce','woocommerce@remoterangler.com','','','2019-06-04 13:43:27','2019-06-04 13:43:27','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(168,298,'WooCommerce','woocommerce@remoterangler.com','','','2019-06-04 13:43:39','2019-06-04 13:43:39','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(169,183,'remoterangler.com','micgyhaelEveno@gmail.com','','185.206.224.249','2019-06-07 14:00:21','2019-06-07 14:00:21','Hy there,   remoterangler.com \r\nhttps://drive.google.com/file/d/1v0NxTWq5PbuzpTZPUNaDlkNwRH9cgfGJ/preview',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(170,299,'WooCommerce','woocommerce@remoterangler.com','','','2019-06-07 22:48:42','2019-06-07 22:48:42','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(171,183,'DavidCrync','queencharlizebester@yandex.com','','178.162.223.88','2019-06-08 02:22:55','2019-06-08 02:22:55','We specialize in legal degrees from USA universities. Apostle/Notarization/Embassy legalization. \r\n \r\nNow we have partnered up with schools, from kindergarten up to college level, in whole China ! \r\n \r\nFrom 1400 USD - 4000 USD a month, 4 hours per day on relaxed schedule. \r\nWe will assist you with *all* that\'s needed. You will have the working Z-visa before you leave your home country. \r\n \r\n1. Arrival assistance, SIM card and bank account arranged \r\n2. Accommodation or housing stipend given \r\n3. Free meals at school \r\n4. Flight to China from anywhere in the world! \r\n5. Z-type work visa assistance \r\n6. Free TEFL course sponsorship \r\n7. Continual support and assistance from UK and South African office \r\n8. Mandarin classes provided :cn: \r\n9. Local foreign management team \r\n10. Bachelor degree for life, when needed ! \r\n \r\nCheck out details about our diplomas at https://www.degreeforlife.co.uk \r\n \r\n* Do you know somebody with interest ? Up to 300 USD through our affiliate program!',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','review',0,0),(172,183,'Davidhox','katie.sam.shea@gmail.com','','217.64.113.212','2019-06-09 06:04:09','2019-06-09 06:04:09','Hello, \r\n \r\nLook Years Younger in 1 Minute without costly cosmetic surgery.  1 Minute Face Lift Anti-Wrinkle cream reduces Face &amp; Eye Wrinkles, Under Eye Bags, Saggy Skin, Large Pores, Acne Scars, Crow’s Feet and any Early Signs of Aging.  Stem Cell, Natural, Argireline and Omega-3 ingredients work beneath the skin’s surface to reduce signs of aging.  Apply &amp; Dry and watch the results right before your eyes, lasting up to 8-10 hours long.  No need for cosmetic surgery when you could have Instant Results!  We Sell and Ship Worldwide @ https://www.EpiLift.com',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(173,300,'WooCommerce','woocommerce@remoterangler.com','','','2019-06-09 18:23:53','2019-06-09 18:23:53','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(174,183,'RichardRep','raphaeMimihasyvah@gmail.com','','89.163.151.77','2019-06-09 23:16:58','2019-06-09 23:16:58','Hello!  remoterangler.com \r\n \r\nWe make available \r\n \r\nSending your commercial proposal through the feedback form which can be found on the sites in the Communication section. Feedback forms are filled in by our application and the captcha is solved. The advantage of this method is that messages sent through feedback forms are whitelisted. This method increases the probability that your message will be open. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 99 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nSkype live:contactform_18 \r\nEmail - ContactForm@make-success.com \r\nWhatsApp - +353899461815',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','review',0,0),(175,183,'AnthonyMaL','marketing-team@aplana.us','','95.154.200.175','2019-06-13 12:05:45','2019-06-13 12:05:45','Hi! We are working with businesses like yours to support them in the creation of excellent websites and mobile apps of any complexity and specification. \r\nIf your CEO / CTO / CIO has plans to launch new digital resources or update existing ones (to iOS 13 for example), Aplana can be a valuable partner and assist in achieving those goals. \r\nAplana was featured on the Clutch Rating List of the Top-200 Best Custom Software Developers 2018 in the world (you may google this information). \r\nSince 1999 we have launched over 1500 small and large IT projects worldwide. We deliver digital projects to US customers through our highly skilled software teams in Eastern Europe. \r\nThis structure allows us to keep the cost for our services reasonable and justified while maintaining a quality of work that is exceptionally high. \r\nPlease contact us if you have any technical RFP ( request@aplana.us ) or visit us at http://aplana.us \r\nto get more info. \r\nPlease, accept our apology if it currently doesn\'t apply to you.',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','review',0,0),(176,183,'Marvinvop','animatedexplainervideo1@gmail.com','','141.98.100.89','2019-06-13 18:41:03','2019-06-13 18:41:03','Convert your traffic into clients with Animated Explainer Videos \r\nLet?s face it. There?s only 1 reason you have a website. To generate business, Right? \r\n \r\nYou already have traffic. Want to convert more of your traffic into customers? \r\nThey say a picture is worth a thousand words. Well, an animated explainer video is worth much more. \r\n \r\nYou are too busy to read paragraph after paragraph of words on a website. Time is money and the quicker you can explain your business in an entertaining way to your visitors, the easier it is to convert them into your client. \r\n \r\nWatch this short 3 minute video and you?ll understand why successful businesses like Google, Amazon, Walmart and more use animated explainers video to get their message across. \r\n \r\njunepanama2000@gmail.com \r\nhttps://youtu.be/qCRNKMRETVg',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(177,183,'remoterangler.com','micgyhaelEveno@gmail.com','','109.248.149.39','2019-06-16 09:48:03','2019-06-16 09:48:03','Look at an interesting  gift for victory. remoterangler.com \r\nhttp://bit.ly/2Ky52ml',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','review',0,0),(178,151,'d9n9e1i7','wsohvxyw@gmail.com','','5.188.210.5','2019-06-17 22:16:19','2019-06-17 22:16:19','<a href=\"https://customessayy.us/\" rel=\"nofollow\">fast custom essay</a>, cheap custom essay \r\ncustom made essays, <a href=\"https://customessayy.us/\" rel=\"nofollow\">custom essays</a> \r\nhttps://customessayy.us/',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','review',0,0),(179,183,'Anthonyshelt','gulfsrv94@gmail.com','','185.230.127.170','2019-06-28 08:46:08','2019-06-28 08:46:08','Good day!, remoterangler.com \r\n \r\nOur patron want to fund in your district for good gain. \r\n \r\nPlease contact us for more information on  +973 650 09688 or mh@indobsc.com \r\n \r\nBest regards \r\nMr. Mat Hernandez',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(180,183,'remoterangler.com','micgyhaelEveno@gmail.com','','185.128.27.171','2019-06-28 18:08:03','2019-06-28 18:08:03','There is an important  in short supply pay for winning. remoterangler.com \r\nhttp://bit.ly/2Ky4Ovv',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','review',0,0),(533,89,'Maxnaive','oskudfert1@qmails.co','','5.188.210.28','2019-09-17 08:51:12','2019-09-17 15:51:12','Cialis generic price <a href=\"http://cialisherrx.com/#\" rel=\"nofollow\">cialis online</a> viagra black market cialis pills <a href=\"http://cialismdmarx.com/#\" rel=\"nofollow\">generic cialis online</a>',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(527,89,'Drergo','oskudfert1@qmails.co','','5.188.210.28','2019-09-13 03:27:39','2019-09-13 10:27:39','Cuba gooding cialis pills <a href=\"http://cialisherrx.com/#\" rel=\"nofollow\">buy cialis online</a> generic cialis online india <a href=\"http://cialismdmarx.com/#\" rel=\"nofollow\">cialis online</a>',0,'spam','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','review',0,0),(536,89,'Loorkfop','plsolserq2@qmails.pro','','5.188.210.27','2019-09-19 03:49:22','2019-09-19 10:49:22','Us cialis generic vaistas <a href=\"http://aeu32.com/#\" rel=\"nofollow\">buy cheap cialis online</a> natural forms of viagra cialis pills <a href=\"http://chilecitonews.com/#\" rel=\"nofollow\">Buy Generic Cialis Online</a> cialis vs generic cialis <a href=\"http://atrativaweb.com.br/#\" rel=\"nofollow\">buy cialis online</a> buy tadalafil india cipla <a href=\"http://castdemy.com/#\" rel=\"nofollow\">cialis generic</a> order cialis online without over the counter <a href=\"http://badcreditpaydayloanuqdirect.com/#\" rel=\"nofollow\">cheap cialis</a> cialis 5mg tablets cialis',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','review',0,0),(535,89,'unpash','plsolserq1@qmails.pro','','5.188.210.27','2019-09-18 15:23:40','2019-09-18 22:23:40','Buy cialis without a prescription <a href=\"http://interstatestashexpress.com/#\" rel=\"nofollow\">online cialis</a> buy brand cialis online <a href=\"http://discoveraurelia.com/#\" rel=\"nofollow\">buy cialis online cheap</a> cialis tablets australia <a href=\"http://cymaxcomputers.co.uk/#\" rel=\"nofollow\">Buy Generic Cialis Online</a> cialis 20 mg online <a href=\"http://crescentactivitybank.co.uk/#\" rel=\"nofollow\">buy cialis</a> cialis by mail order <a href=\"http://madcambodia.org/#\" rel=\"nofollow\">cialis</a> generic cialis vs brand cialis',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','review',0,0),(534,89,'ManyRuby','plsolserq0@qmails.pro','','5.188.210.27','2019-09-18 14:58:06','2019-09-18 21:58:06','Viagra sales 2008 cialis generic <a href=\"http://eduglasses.com/#\" rel=\"nofollow\">generic cialis</a> generic cialis fast delive <a href=\"http://beiradapraia.com.br/#\" rel=\"nofollow\">online cialis</a> cialis online <a href=\"http://l2plus.ru/#\" rel=\"nofollow\">buy cialis generic</a> brand cialis buy online <a href=\"http://autodidataeditora.com.br/#\" rel=\"nofollow\">cialis cheap</a> generic cialis 20mg best buy spain <a href=\"http://automenta.com/#\" rel=\"nofollow\">generic cialis</a> reductil online without prescription cialis 20mg',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(532,89,'pleaply','oskudfert2@qmails.co','','5.188.210.28','2019-09-17 08:48:55','2019-09-17 15:48:55','Order brand cialis <a href=\"http://cialismrxcialis.com/#\" rel=\"nofollow\">cialis online</a> viagra substitutes <a href=\"http://genviagramdmrx.com/#\" rel=\"nofollow\">order viagra</a>',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','review',0,0),(516,89,'Scagree','oskudfert0@qmails.pro','','5.188.210.27','2019-09-03 18:39:41','2019-09-04 01:39:41','Taking without ed cialis pills cialis <a href=\"http://cialischmrx.com/#\" rel=\"nofollow\">buy cialis online</a> mixing viagra and levitra cialis generic <a href=\"http://cialisdbrx.com/#\" rel=\"nofollow\">buy generic cialis</a>',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(509,89,'SeteDine','lgaerfkls0@qmails.pro','','5.188.210.27','2019-08-27 05:02:07','2019-08-27 12:02:07','Us cialis generic <a href=\"http://www.cialisongen.com/#\" rel=\"nofollow\">generic cialis</a> viagra dropship cialis generic <a href=\"https://cialisnorxs.com/#\" rel=\"nofollow\">generic cialis online</a> legit payday loan lenders <a href=\"http://paydaysonlinemoney.com/#\" rel=\"nofollow\">loans for bad credit</a>',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','review',0,0),(482,183,'Bobbyemise','reports@bullionsms.com','','185.93.180.213','2019-08-02 20:23:48','2019-08-03 03:23:48','Dear Sir/Ma, \r\n \r\nWe are aware of your business needs. We at Bullion technology Solutions specialize in profering solutions to businesses using technological approaches. \r\nWe would like to know the present issues you face be it sales/marketing or otherwise, and how we can come in to solve them. Kindly fill our request form so we can proceed from there, using the link below: \r\n \r\nhttp://www.bit.ly/customerrequest \r\n \r\nWe look forward to your feedback. We always deliver!',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(528,183,'apnogaefude','aqariqeri@email.namnerbca.com','','37.115.121.29','2019-09-13 06:54:39','2019-09-13 13:54:39','http://mewkid.net/order-amoxicillin/ - Amoxicillin 500 Mg <a href=\"http://mewkid.net/order-amoxicillin/\" rel=\"nofollow\">Amoxicillin Without Prescription</a> nqj.fxqq.remoterangler.com.amf.hq http://mewkid.net/order-amoxicillin/',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(563,183,'Curtishew','passiondating777@gmail.com','','84.17.62.143','2019-10-17 00:26:41','2019-10-17 07:26:41','“Passion” : The new revolutionary Dating app \r\nOffers all the functions you are using on a daily basis. \r\n \r\n?	Free Download \r\n?	Free Range \r\n?	Video-chat through the app \r\n?	Call through the app \r\n?	Hashtag functionality \r\n?	Super easy to use! \r\n \r\nGo to appstore, google play or simply click the link below and find your soulmate now! \r\n \r\nhttp://onelink.to/dpx34k',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','review',0,0),(526,89,'Paurfax','oskudfert0@qmails.co','','5.188.210.28','2019-09-12 16:09:08','2019-09-12 23:09:08','Viagra in spanish <a href=\"http://chviagranrxusa.com/#\" rel=\"nofollow\">viagra</a> cialis generic reviews <a href=\"http://cialismnrx.com/#\" rel=\"nofollow\">cialis coupon</a>',0,'spam','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(523,89,'quielia','plsolserq0@qmails.pro','','5.188.210.27','2019-09-12 05:10:51','2019-09-12 12:10:51','Canada cialis generic <a href=\"http://corridavirtualunimed.com.br/#\" rel=\"nofollow\">buy cheap cialis</a> most effective cialis pills <a href=\"http://gamingpromo.com/#\" rel=\"nofollow\">buy cialis online cheap</a> legitimate cialis generic <a href=\"http://archivomunicipaldecastrourdiales.com/#\" rel=\"nofollow\">buy cheap cialis online</a> buy tadalafil pune <a href=\"http://babysitterpass.com/#\" rel=\"nofollow\">Buy Cheap Cialis Online</a> caverta in india cialis generic <a href=\"http://4ginthebox.com/#\" rel=\"nofollow\">cheap generic cialis</a> amazon cialis generic',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(524,89,'Glifeme','plsolserq1@qmails.pro','','5.188.210.27','2019-09-12 05:14:00','2019-09-12 12:14:00','Cialis 5mg price online canadian pharmacy <a href=\"http://fatlack.com/#\" rel=\"nofollow\">buy cialis</a> generic 10 mg cialis 20mg <a href=\"http://bestk.net/#\" rel=\"nofollow\">buy cialis generic</a> generic cialis without prescription <a href=\"http://seo-dev.co.uk/#\" rel=\"nofollow\">generic cialis</a> order cialis online no prescription <a href=\"http://hangar18.org/#\" rel=\"nofollow\">cialis online</a> viagra shop in london cialis generic <a href=\"http://cinemasouth.org/#\" rel=\"nofollow\">Buy Cialis Online</a> metformin expiration cialis generic pills used',0,'spam','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','review',0,0),(525,89,'Unalry','plsolserq2@qmails.pro','','5.188.210.27','2019-09-12 05:15:51','2019-09-12 12:15:51','Buy cialis generic online <a href=\"http://constructoraangelmo.cl/#\" rel=\"nofollow\">cialis online</a> soft cialis pharmacy <a href=\"http://djsemantik.com/#\" rel=\"nofollow\">buy cialis generic</a> buy cialis in mexico cialis <a href=\"http://forgearts.com/#\" rel=\"nofollow\">buy cialis generic</a> generic cialis fast delive <a href=\"http://bedsgolfunion.org/#\" rel=\"nofollow\">generic cialis online</a> cialis online cheap cialis <a href=\"http://chorrera.com/#\" rel=\"nofollow\">cialis coupon</a> cialis order usa',0,'spam','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(522,183,'Averyreumn','raphaehasy@gmail.com','','37.120.142.174','2019-09-11 08:38:02','2019-09-11 15:38:02','Hi!  remoterangler.com \r\n \r\nHave you ever heard of sending messages via contact forms? \r\n \r\nImagine that your message will be readseen by hundreds of thousands of your potential buyerscustomers. \r\nYour message will not go to the spam folder because people will send the message to themselves. As an example, we have sent you our suggestion  in the same way. \r\n \r\nWe have a database of more than 30 million sites to which we can send your offer. Sites are sorted by country. Unfortunately, you can only select a country when sending a message. \r\n \r\nThe cost of one million messages 49 USD. \r\nThere is a discount program when you buy  more than two million letter packages. \r\n \r\n \r\nFree test mailing of 50,000 messages to any country of your selection. \r\n \r\n \r\nThis offer is created automatically. Please use the contact details below to contact us. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - Contact@feedbackmessages.com',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','review',0,0),(518,405,'WooCommerce','woocommerce@remoterangler.com','','','2019-09-05 18:21:36','2019-09-06 01:21:36','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(519,183,'Stevmomy','carrington@miki7.site','','5.188.84.76','2019-09-07 00:24:08','2019-09-07 07:24:08','Amoxicillin And Indications Tomar Viagra Joven  <a href=\"http://tadalaffbuy.com\" rel=\"nofollow\">buy generic cialis</a> Keflex And Vaginitis Generico Viagra Eu Propecia Patent',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','review',0,0),(520,183,'Nancyner','ben.tumolva@gmail.com','','85.206.165.24','2019-09-10 20:40:33','2019-09-11 03:40:33','http://imdifcoban.tk/ux7t1',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(521,183,'Patsyreuff','patsygoact@gmail.com','','185.93.3.111','2019-09-11 06:20:47','2019-09-11 13:20:47','hi there \r\nWe all know there are no tricks with google anymore \r\nSo, instead of looking for ways to trick google, why not perform a whitehat results driven monthly SEO Plan instead. \r\n \r\nCheck out our plans \r\nhttps://googlealexarank.com/index.php/seo-packages/ \r\n \r\nWe know how to get you into top safely, without risking your investment during google updates \r\n \r\nthanks and regards \r\nMike \r\nstr8creativecom@gmail.com',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(517,89,'EcomsMon','oskudfert0@qmails.co','','5.188.210.28','2019-09-03 18:39:41','2019-09-04 01:39:41','Viagra jokes pictures <a href=\"http://chviagranrxusa.com/#\" rel=\"nofollow\">viagra online</a> online cialis no prescription <a href=\"http://cialismnrx.com/#\" rel=\"nofollow\">cialis coupon</a>',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','review',0,0),(514,89,'Wrosmono','lgaerfkls0@qmails.pro','','5.188.210.27','2019-09-02 20:39:13','2019-09-03 03:39:13','Quality of generic cialis online pharmacy <a href=\"http://cialisgenbrx.com/#\" rel=\"nofollow\">online cialis</a> cialis online p harmacy canada <a href=\"https://cialisrxche.com/#\" rel=\"nofollow\">buy generic cialis</a> payday loans no brokers bad credit <a href=\"http://paydaystip.com/#\" rel=\"nofollow\">loans for bad credit</a>',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(513,89,'Sinacend','lgaerfkls1@qmails.pro','','5.188.210.27','2019-09-02 20:31:42','2019-09-03 03:31:42','Canada generic cialis prices buy <a href=\"http://cialisgenbrx.com/#\" rel=\"nofollow\">generic cialis</a> cialis non generic from canada <a href=\"https://cialisrxche.com/#\" rel=\"nofollow\">cheap cialis online</a> payday loans usa <a href=\"http://paydaystip.com/#\" rel=\"nofollow\">loans for bad credit</a>',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','review',0,0),(515,89,'Loorkfop','lgaerfkls2@qmails.pro','','5.188.210.27','2019-09-02 20:42:30','2019-09-03 03:42:30','Voucher cialis tablets <a href=\"http://cialisgenbrx.com/#\" rel=\"nofollow\">cheap cialis online</a> cialis online canadian pharmacy cialis <a href=\"https://cialisrxche.com/#\" rel=\"nofollow\">buy cialis online</a> 1 hour cash loans <a href=\"http://paydaystip.com/#\" rel=\"nofollow\">payday loans online</a>',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(510,89,'shietly','lgaerfkls2@qmails.pro','','5.188.210.27','2019-08-27 05:09:50','2019-08-27 12:09:50','Cialis coupons <a href=\"http://www.cialisongen.com/#\" rel=\"nofollow\">generic cialis online</a> cheap generic cialis online buy <a href=\"https://cialisnorxs.com/#\" rel=\"nofollow\">buy generic cialis</a> payday loans reviews <a href=\"http://paydaysonlinemoney.com/#\" rel=\"nofollow\">payday loans online</a>',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','review',0,0),(511,89,'cranoms','lgaerfkls1@qmails.co','','5.188.210.28','2019-09-02 19:55:48','2019-09-03 02:55:48','<a href=\"http://paydaymycreditloan.com/#\" rel=\"nofollow\">payday loans online</a> <a href=\"http://cialismnrx.com/#\" rel=\"nofollow\">cialis online</a> <a href=\"http://viagralx.com/#\" rel=\"nofollow\">cheap viagra</a> <a href=\"http://cialischmrx.com/#\" rel=\"nofollow\">cheap cialis</a> <a href=\"http://cashpaydayusloans.com/#\" rel=\"nofollow\">loans online</a>',0,'spam','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(512,89,'Ecosque','lgaerfkls0@qmails.co','','5.188.210.28','2019-09-02 20:03:11','2019-09-03 03:03:11','<a href=\"http://genviagramdmrx.com/#\" rel=\"nofollow\">viagra</a> <a href=\"http://cialiishb.com/#\" rel=\"nofollow\">buy generic cialis online</a> <a href=\"http://viagralx.com/#\" rel=\"nofollow\">buy generic viagra</a> <a href=\"http://paydayonlineexpress.com/#\" rel=\"nofollow\">quick cash advance online</a> <a href=\"http://paydaymycreditloan.com/#\" rel=\"nofollow\">loans for bad credit</a>',0,'spam','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','review',0,0),(507,183,'DavidNeopy','mjoselawwell@gmail.com','','185.90.57.171','2019-08-27 00:15:25','2019-08-27 07:15:25','Good day to you, \r\nI am Mr. Juan Alejandro Perez, a Spanish lawyer. I have previously sent you an email regarding a transaction of $13.5 million left by my late client before his tragic death. \r\nI am contacting you once again because after going through your profile, I strongly believe that you will be in a better position to execute this business transaction with me. Please if you are interested to proceed with me kindly respond to my email urgently for more detail information. \r\nThis transaction is 100% risk free and 10% of the total fund will be donated among charity organizations while the remaining will be shared equal by the both of us upon a successful conclusion of the fund transfer to your nominated Bank account. Please advice urgently. \r\nYours Faithfully, \r\nBr. juan Alejandro Perez \r\nTel: +34 919 017 821 \r\nEmail: perez@ap-lawfirm.com',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','review',0,0),(506,183,'Ronaldshier','frances115i@outlook.com','','85.206.165.15','2019-08-26 23:02:19','2019-08-27 06:02:19','Regard is  a kindcontribution someone is concerned you. http://pertlymphesearch.tk/s8bh',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','review',0,0),(508,89,'heasse','lgaerfkls1@qmails.co','','5.188.210.28','2019-08-27 04:39:28','2019-08-27 11:39:28','<a href=\"http://viagrabstnrx.com/#\" rel=\"nofollow\">generic viagra</a> <a href=\"http://genviagramdmrx.com/#\" rel=\"nofollow\">buy viagra online</a> <a href=\"http://cialismnrx.com/#\" rel=\"nofollow\">generic cialis</a> <a href=\"http://cashpaydayusloans.com/#\" rel=\"nofollow\">same day loans</a> <a href=\"http://cialismdmarx.com/#\" rel=\"nofollow\">buy cialis online</a>',0,'spam','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(505,89,'anembero','lgaerfkls0@qmails.pro','','5.188.210.27','2019-08-24 13:25:01','2019-08-24 20:25:01','Cialis offer <a href=\"http://www.cialisongen.com/#\" rel=\"nofollow\">buy cialis online</a> to buy cialis online <a href=\"https://cialisnorxs.com/#\" rel=\"nofollow\">buy generic cialis</a> payday loan stores near me <a href=\"http://paydaysonlinemoney.com/#\" rel=\"nofollow\">personal loans</a>',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(504,404,'WooCommerce','woocommerce@remoterangler.com','','','2019-08-22 14:23:15','2019-08-22 21:23:15','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(498,89,'PypeMymn','elosbnfea@qmails.co','','5.188.210.27','2019-08-18 03:01:06','2019-08-18 10:01:06','Buy cialis professional online <a href=\"http://cialisndbrx.com/#\" rel=\"nofollow\">buy cialis online</a> paroxetine 75 mg cialis generic pills <a href=\"http://cialischmrx.com/#\" rel=\"nofollow\">buy cheap cialis online</a> buy cialis online usa <a href=\"http://cialischbrx.com/#\" rel=\"nofollow\">buy generic cialis online</a> tadalafil api cialis generic <a href=\"http://cialisdbrx.com/#\" rel=\"nofollow\">buy cheap cialis online</a> how to get a viagra prescription <a href=\"http://chviagranrxusa.com/#\" rel=\"nofollow\">buy generic viagra online</a>',0,'0','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(499,403,'WooCommerce','woocommerce@remoterangler.com','','','2019-08-18 07:09:51','2019-08-18 14:09:51','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(500,403,'WooCommerce','woocommerce@remoterangler.com','','','2019-08-18 07:09:58','2019-08-18 14:09:58','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(501,183,'ThomasAsype','thomasSup@gmail.com','','185.93.180.217','2019-08-19 12:31:23','2019-08-19 19:31:23','Having a better Alexa for your website will increase sales and visibility \r\n \r\nOur service is intended to improve the Global Alexa traffic rank of a website. It usually takes seven days to see the primary change and one month to achieve your desired three-month average Alexa Rank. The three-month average Alexa traffic rank is the one that Alexa.com shows on the Alexa’s toolbar. \r\n \r\nFor more information visit our website \r\nhttps://monkeydigital.co/product/alexa-rank-service/ \r\n \r\nthanks and regards \r\nMike \r\nmonkeydigital.co@gmail.com',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','review',0,0),(502,183,'KennethFep','travvel@hotbox.ru','','84.17.58.14','2019-08-20 05:46:24','2019-08-20 12:46:24','Hy there,  an surprisingoffer  http://haihilllamar.tk/8i72',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','review',0,0),(503,183,'WilliamGrene','jcboy52@gmail.com','','5.253.204.11','2019-08-22 10:31:27','2019-08-22 17:31:27','That is a frailput up for sale for you. http://siopercara.tk/su4p',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(495,402,'WooCommerce','woocommerce@remoterangler.com','','','2019-08-15 11:09:32','2019-08-15 18:09:32','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(492,89,'KiaRedlY','spring@probbox.com','','5.188.210.61','2019-08-13 05:30:49','2019-08-13 12:30:49','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">cafergot tablets</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','review',0,0),(491,89,'KiaRedlY','gunplumberwiz@probbox.com','','5.188.210.61','2019-08-11 20:14:54','2019-08-12 03:14:54','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">cafergot medication</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','review',0,0),(493,89,'KiaRedlY','jdwest67@probbox.com','','5.188.210.61','2019-08-14 13:39:31','2019-08-14 20:39:31','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">cafergot tablets</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','review',0,0),(494,183,'Lydia','Lydia@gmail.com','','164.132.90.60','2019-08-14 15:39:38','2019-08-14 22:39:38','Hi, very nice website, cheers!\r\n------------------------------------------------------\r\nNeed cheap and reliable hosting? Our shared plans start at $10 for an year and VPS plans for $6/Mo.\r\n------------------------------------------------------\r\nCheck here: https://www.good-webhosting.com/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0','review',0,0),(496,89,'KiaRedlY','lacey@probbox.com','','5.188.210.61','2019-08-15 23:59:55','2019-08-16 06:59:55','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">cafergot &amp; internet pharmacy</a>',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(497,89,'KiaRedlY','suprnurse@probbox.com','','5.188.210.61','2019-08-17 08:31:33','2019-08-17 15:31:33','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">cafergot medication</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','review',0,0),(490,183,'http://egpretexcon.tk/l1pw','frankieg97@hotmail.com','','185.253.97.237','2019-08-10 18:47:47','2019-08-11 01:47:47','There is an dash  zealous node in circumstances of you.  http://sanilenwebs.tk/bg2y',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(489,89,'KiaRedlY','zaozao1968@probbox.com','','5.188.210.61','2019-08-10 12:09:30','2019-08-10 19:09:30','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">cafergot medication</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(488,89,'KiaRedlY','yakubmusa@probbox.com','','5.188.210.61','2019-08-09 04:39:54','2019-08-09 11:39:54','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">cafergot</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','review',0,0),(487,89,'KiaRedlY','dennis@probbox.com','','5.188.210.61','2019-08-07 18:00:39','2019-08-08 01:00:39','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">cafergot</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','review',0,0),(483,89,'KiaRedlY','katie@probbox.com','','5.188.210.61','2019-08-03 05:35:04','2019-08-03 12:35:04','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">cafegot</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(484,89,'KiaRedlY','adriantownsend@probbox.com','','5.188.210.61','2019-08-04 16:03:58','2019-08-04 23:03:58','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">cafergot pills</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(485,89,'KiaRedlY','emikoabe@probbox.com','','5.188.210.61','2019-08-06 03:38:55','2019-08-06 10:38:55','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">buy cafergot online</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','review',0,0),(486,183,'H. Roenne','euro75pc@outlook.com','','217.64.113.213','2019-08-06 21:21:08','2019-08-07 04:21:08','Have you ever wanted to start a solid, \"real-deal\" \r\nsuccessful online business but didn’t know how? \r\n \r\nPerhaps you’ve TRIED any of the these: \r\n \r\n- Affiliate marketing \r\n- Biz Opps &amp; MLM \r\n- E-Commerce \r\n- Product creation \r\n \r\n... only to struggle and never getting any results? \r\n \r\nIf you’re looking for the simplest way of \"getting \r\ninto the money\" - then I invite you to attend this \r\nadvanced Live training: \r\n \r\nhttp://trck.me/FREE_Affiliate_Training/ \r\n \r\nBest regards \r\nH. Roenne',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','review',0,0),(481,89,'KiaRedlY','oustleirig2@probbox.com','','5.188.210.61','2019-08-01 18:25:54','2019-08-02 01:25:54','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">cafergot &amp; internet pharmacy</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(480,89,'KiaRedlY','trastejuno@probbox.com','','5.188.210.61','2019-07-31 06:37:07','2019-07-31 13:37:07','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">cafergot medication</a>',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(463,183,'ContactForm','raphaeMimihasyvah@gmail.com','','31.13.190.254','2019-07-01 12:56:06','2019-07-01 19:56:06','Hello!  remoterangler.com \r\n \r\nWe suggest \r\n \r\nSending your message through the feedback form which can be found on the sites in the Communication section. Feedback forms are filled in by our application and the captcha is solved. The profit of this method is that messages sent through feedback forms are whitelisted. This technique increases the probability that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com \r\nWhatsApp - +44 7598 509161',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','review',0,0),(464,400,'WooCommerce','woocommerce@remoterangler.com','','','2019-07-03 11:06:41','2019-07-03 18:06:41','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(465,400,'WooCommerce','woocommerce@remoterangler.com','','','2019-07-03 11:06:52','2019-07-03 18:06:52','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(466,183,'Steven Jones','animatedvideos33@gmail.com','','185.217.71.155','2019-07-06 00:18:10','2019-07-06 07:18:10','Hi there, I just came across your website and wanted to get in touch. \r\n \r\nI run an animation studio that makes animated explainer videos helping companies to explain what they do, why it matters and how they\'re unique in less than 2 minutes. \r\n \r\nWatch some of our work here: \r\nhttp://bit.ly/2ZYi013  - what do you think about it? \r\n \r\nI would love to make an awesome animated video for you guys. \r\n \r\nWe have a smooth production process and handle everything needed for a high-quality video that typically takes us 6 weeks to produce from start to finish. \r\n \r\nFirst, we nail the script, design storyboards you can’t wait to see animated. Voice actors in your native language that capture your brand and animation that screams premium with sound design that brings it all together. \r\n \r\nOur videos are made from scratch and designed to make you stand out and get results. No templates, no cookie cutter animation that tarnishes your brand. \r\n \r\nIf you’re interested in learning more, please get in touch on the email below: \r\nEmail: storybitevideos@gmail.com \r\n \r\nThank you for your attention.',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','review',0,0),(467,401,'WooCommerce','woocommerce@remoterangler.com','','','2019-07-07 11:25:35','2019-07-07 18:25:35','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(468,401,'WooCommerce','woocommerce@remoterangler.com','','','2019-07-07 11:25:47','2019-07-07 18:25:47','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(469,183,'ContactForm','raphaeMimihasyvah@gmail.com','','31.13.190.254','2019-07-09 21:02:05','2019-07-10 04:02:05','Ciao!  remoterangler.com \r\n \r\nWe offer \r\n \r\nSending your business proposition through the feedback form which can be found on the sites in the contact partition. Contact form are filled in by our application and the captcha is solved. The profit of this method is that messages sent through feedback forms are whitelisted. This method increases the chances that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nWhatsApp - +44 7598 509161 \r\nEmail - FeedbackForm@make-success.com',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(470,183,'remoterangler.com','micgyhaelEveno@gmail.com','','83.97.23.234','2019-07-09 22:28:46','2019-07-10 05:28:46','Look at a forfeiture  relieve against win. remoterangler.com \r\nhttp://bit.ly/2KFfA2S',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','review',0,0),(471,183,'KeithGEM','lamalexander325@gmail.com','','185.93.3.114','2019-07-10 12:08:49','2019-07-10 19:08:49','Dear Sir/Madam \r\n \r\nAre you a real estate Investor, a company owner, business owner and you looking for a loan to expand your business? \r\nhere is the opportunity for you,  I work with Anchor Investment USA LLC, A Registered  financial management firm that specializes in securing finances assistance for start-up and large sized businesses. \r\n \r\nKindly get back to me for more information to our programs \r\n \r\nThanks \r\nRivera \r\nemail : funding@achorinvestementusallc.com \r\n# 440 359 4138 \r\nwebiste : https://www.aiusallc.com',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','review',0,0),(472,183,'FrankStulk','edithsdesk@gmail.com','','141.98.100.51','2019-07-10 16:19:15','2019-07-10 23:19:15','Hi, \r\n \r\nI would like to purchase your product  please sell it on https://zolango.com  where there is a whole niche of customers just waiting to pay in BitCoin. \r\n \r\nhttps://zolango.com  is The Home of CryptoCommerce.',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','review',0,0),(473,183,'Brianphymn','support@monkeydigital.co','','178.162.209.79','2019-07-15 18:22:27','2019-07-16 01:22:27','Hi there \r\nThe Local SEO package is built to rank local keywords for your local business in the google search and in google maps. We have researched for years what local SEO activities truly work and have put all in one single local SEO plan to accomplish the expected results and more. You will start seeing big increases in ranks from the 1st month of work already. You get monthly SEO reports and benchmark reports. \r\n \r\nhttp://monkeydigital.co/product/local-seo-package/ \r\n \r\nThanks and regards \r\nMike \r\nMonkey Digital \r\nmonkeydigital.co@gmail.com',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','review',0,0),(474,183,'remoterangler.com','micgyhaelEveno@gmail.com','','83.97.23.188','2019-07-20 21:45:20','2019-07-21 04:45:20','Fancy note a special-occasion  offers to you. remoterangler.com \r\nhttp://bit.ly/2NK4kpb',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','review',0,0),(475,183,'DarenBlaky','support@monkeydigital.co','','185.102.219.172','2019-07-23 23:20:08','2019-07-24 06:20:08','What will we do to increase your DA? \r\n \r\nOur Plan is very simple yet very effective. We have researched all available sources and gained access to thousands of High DA domains that are directly indexed and re-crawled by Moz Robots on each update. So, we will build and index: \r\n \r\n- 5000 DA30+ backlinks \r\n- 2500 dofollow from high PA pages \r\n- 1000 unique domains links with high DA scores \r\n \r\nstart boosting ranks and SEO metrics with our plan today: \r\nhttp://monkeydigital.co/product/moz-da-seo-plan/ \r\n \r\nBest regards \r\nMike \r\nmonkeydigital.co@gmail.com',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','review',0,0),(476,183,'Thomasdrymn','nitishwebcodex@gmail.com','','151.106.12.254','2019-07-24 14:37:57','2019-07-24 21:37:57','My Name is Nitish Takzaria I am young and passionate developer having 7 year experience in web development and good hands on WordPress development, designing and PHP Development. \r\nAnd good in delivering quality services with respect to restrict deadlines &amp; high expectations. \r\nMy contact information as follow \r\nProfile link : https://www.fiverr.com/expertnits \r\nPersonal link : https://nitish-web.jimdosite.com \r\nEmail id : nitish.takzare@gmail.com \r\nSkype ID: nakul.namdev',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36','review',0,0),(477,183,'remoterangler.com','micgyhaelEveno@gmail.com','','45.81.0.99','2019-07-25 05:17:14','2019-07-25 12:17:14','That is enjoyably  profit an tickled pink visual acuity to winning. remoterangler.com \r\nhttp://bit.ly/2NKkSNM',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','review',0,0),(478,89,'KiaRedlY','szotsg@probbox.com','','5.188.210.61','2019-07-29 18:46:38','2019-07-30 01:46:38','<a href=\"http://cafergot1.com/\" rel=\"nofollow\">generic cafergot</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','review',0,0),(479,183,'Robertluple','raphaeMimihasyvah@gmail.com','','185.93.3.114','2019-07-30 04:53:05','2019-07-30 11:53:05','Hello!  remoterangler.com \r\n \r\nWe make offer for you \r\n \r\nSending your commercial offer through the feedback form which can be found on the sites in the Communication section. Contact form are filled in by our software and the captcha is solved. The profit of this method is that messages sent through feedback forms are whitelisted. This method raise the odds that your message will be read. \r\n \r\nOur database contains more than 25 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing of 50,000 messages to any country of your choice. \r\n \r\n \r\nThis message is automatically generated to use our contacts for communication. \r\n \r\n \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - FeedbackForm@make-success.com \r\nWhatsApp - +44 7598 509161',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','review',0,0),(537,89,'teamfoen','oskudfert1@qmails.co','','5.188.210.28','2019-09-19 06:11:34','2019-09-19 13:11:34','Generique cialis 20mg <a href=\"http://cialisherrx.com/#\" rel=\"nofollow\">cialis</a> generic cialis price <a href=\"http://cialismdmarx.com/#\" rel=\"nofollow\">buy cialis online</a>',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(538,89,'Drergo','oskudfert0@qmails.co','','5.188.210.28','2019-09-19 06:20:22','2019-09-19 13:20:22','Girls viagra <a href=\"http://chviagranrxusa.com/#\" rel=\"nofollow\">viagra coupon</a> cialis order <a href=\"http://cialismnrx.com/#\" rel=\"nofollow\">buy cialis online</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(539,183,'HildaQueet','kerstin.trost@ebgymhollabrunn.ac.at','','84.17.61.23','2019-09-22 00:12:53','2019-09-22 07:12:53','We would like to inform that you liked a comment ID:35915743 in a social network , January 9, 2019 at 19:48 \r\nThis like has been randomly selected to win the seasonal «Like Of The Year» 2019 award! \r\nhttp://facebook.com+prize+@1310252231/JySrm',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(540,89,'Murnflum','oskudfert1@qmails.pro','','5.188.210.27','2019-09-22 06:23:18','2019-09-22 13:23:18','Pics of cialis pills <a href=\"http://cialischbrx.com/#\" rel=\"nofollow\">buy cialis online</a> buy cialis professional online <a href=\"http://cialisknfrx.com/#\" rel=\"nofollow\">generic cialis</a>',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(541,89,'Werisife','oskudfert0@qmails.pro','','5.188.210.27','2019-09-22 06:34:12','2019-09-22 13:34:12','Generic cialis 20mg amazon mexico <a href=\"http://cialischmrx.com/#\" rel=\"nofollow\">buy generic cialis</a> voucher cialis generic drugs <a href=\"http://cialisdbrx.com/#\" rel=\"nofollow\">cheap cialis online</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','review',0,0),(542,89,'jilsons','oskudfert1@qmails.co','','5.188.210.28','2019-09-22 11:21:58','2019-09-22 18:21:58','Walmart cialis online pharmacy <a href=\"http://cialisherrx.com/#\" rel=\"nofollow\">buy cialis</a> nitric oxide and cialis generic drugs <a href=\"http://cialismdmarx.com/#\" rel=\"nofollow\">buy cialis</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','review',0,0),(543,89,'Julsind','oskudfert0@qmails.co','','5.188.210.28','2019-09-22 11:34:02','2019-09-22 18:34:02','Viagra medicine <a href=\"http://chviagranrxusa.com/#\" rel=\"nofollow\">viagra online</a> generic cialis 20mg best buy spain <a href=\"http://cialismnrx.com/#\" rel=\"nofollow\">buy cheap cialis online</a>',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','review',0,0),(544,409,'WooCommerce','woocommerce@remoterangler.com','','','2019-09-22 13:09:54','2019-09-22 20:09:54','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(545,409,'WooCommerce','woocommerce@remoterangler.com','','','2019-09-22 13:10:04','2019-09-22 20:10:04','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(546,89,'addepsy','oskudfert1@qmails.pro','','5.188.210.27','2019-09-25 09:16:43','2019-09-25 16:16:43','Price of daily cialis 20mg <a href=\"http://cialischbrx.com/#\" rel=\"nofollow\">cialis online</a> generic cialis best price <a href=\"http://cialisknfrx.com/#\" rel=\"nofollow\">buy cheap cialis online</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','review',0,0),(547,89,'uphoday','oskudfert1@qmails.co','','5.188.210.28','2019-09-25 09:16:50','2019-09-25 16:16:50','Buy cialis online doctor <a href=\"http://cialisherrx.com/#\" rel=\"nofollow\">cialis online</a> walmart cialis 20mg <a href=\"http://cialismdmarx.com/#\" rel=\"nofollow\">generic cialis online</a>',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','review',0,0),(548,89,'bewalela','oskudfert2@qmails.pro','','5.188.210.27','2019-09-25 09:22:34','2019-09-25 16:22:34','Cialis non generic cialis <a href=\"http://mrxcialisrx.com/#\" rel=\"nofollow\">cheap cialis</a> home made viagra <a href=\"http://viagramrxgeneric.com/#\" rel=\"nofollow\">cheap viagra</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','review',0,0),(549,410,'WooCommerce','woocommerce@remoterangler.com','','','2019-10-01 16:20:55','2019-10-01 23:20:55','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(550,410,'WooCommerce','woocommerce@remoterangler.com','','','2019-10-01 16:21:17','2019-10-01 23:21:17','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(551,183,'RubenKek','posthajack@gmail.com','','84.17.47.175','2019-10-02 04:03:33','2019-10-02 11:03:33','We assist you in obtaining an authentic passport,id card, drivers license, and other citizenship documents as we have the best team of the experts are strongly recommend all of our clients to buy real documents in order to avoid possible legal complications. \r\n \r\nWhatsApp +17657050792 \r\n \r\nTelegram : citizenshipsales \r\n \r\nVisit: https://citizenshipforsale.co/product-category/passports/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','review',0,0),(552,411,'WooCommerce','woocommerce@remoterangler.com','','','2019-10-02 11:04:16','2019-10-02 18:04:16','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(553,411,'WooCommerce','woocommerce@remoterangler.com','','','2019-10-02 11:04:24','2019-10-02 18:04:24','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(554,183,'DorothyHip','office@beerenhof-unger.at','','37.120.217.12','2019-10-05 10:42:02','2019-10-05 17:42:02','We would like to inform that you liked a comment ID:35915743 in a social network , January 9, 2019 at 19:48 \r\nThis like has been randomly selected to win the seasonal «Like Of The Year» 2019 award! \r\nhttp://facebook.comпјЏemailпјЏ@0X4E18DCC7/pXFL1',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','review',0,0),(555,183,'Charlesasymn','raphaeMimihasyvah@gmail.com','','37.120.145.94','2019-10-05 17:19:03','2019-10-06 00:19:03','Hi!  remoterangler.com \r\n \r\nHave you ever heard that you can send a message through the contact form? \r\nThese forms are located on many sites. We sent you our message in the same way, and the fact that you received and read it shows the effectiveness of this method of sending messages. \r\nSince people in any case will read the message received through the contact form. \r\nOur database includes more than 35 million websites from all over the world. \r\nThe cost of sending one million messages 49 USD. \r\nThere is a discount program for large orders. \r\n \r\nFree trial mailing of 50,000 messages to any country of your selection. \r\n \r\nThis message is created automatically. Please use the contact details below to contact us. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  FeedbackForm2019 \r\nEmail - feedbackform@make-success.com',0,'0','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(556,183,'JulioSUERT','cloudhosting@cyberservices.com','','84.17.51.100','2019-10-06 11:44:33','2019-10-06 18:44:33','Hi , \r\nFor everything you do online, you need a web hosting for your website, blog, application or landing page. \r\nBecause customers hate waiting and the site speed is also a search engines ranking factor,  it needs to be very fast! \r\nBut why paying huge amounts month after month, when you can get 5(yes, five!) Years of Blazing-Fast Web Hosting  for less than the price of one?!? \r\n \r\nCheck out this review to find out more: https://5cloudhost.businessreviewnow.com \r\nBest regards, \r\nMO24H Community',0,'0','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','review',0,0),(557,183,'CrystalCic','produktanfrage-202@kika.com','','37.120.142.155','2019-10-08 15:50:43','2019-10-08 22:50:43','We would like to inform that you liked a comment ID:35915743 in a social network , January 9, 2019 at 19:48 \r\nThis like has been randomly selected to win the seasonal «Like Of The Year» 2019 award! \r\nhttp://facebook.comпјЏprizeпјЏ@0X4E18DCC7/Rm3RZM',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','review',0,0),(558,183,'Davidllrado','amucioabogadoslinfo@gmail.com','','212.103.50.78','2019-10-09 04:11:26','2019-10-09 11:11:26','Dearest in mind, \r\n \r\nI would like to introduce myself for the first time. My name is Barrister David Gomez Gonzalez, the personal lawyer to my late client. \r\nWho worked as a private businessman in the international field. In 2012, my client succumbed to an unfortunate car accident. My client was single and childless. \r\nHe left a fortune worth $12,500,000.00 Dollars in a bank in Spain. The bank sent me message that I have to introduce a beneficiary or the money in their bank will be confiscate. My purpose of contacting you is to make you the Next of Kin. \r\nMy late client left no will, I as his personal lawyer, was commissioned by the Spanish Bank to search for relatives to whom the money left behind could be paid to. I have been looking for his relatives for the past 3 months continuously without success. Now I explain why I need your support, I have decided to make a citizen of the same country with my late client the Next of Kin. \r\n \r\nI hereby ask you if you will give me your consent to present you to the Spanish Bank as the next of kin to my deceased client. \r\nI would like to point out that you will receive 45% of the share of this money, 45% then I would be entitled to, 10% percent will be donated to charitable organizations. \r\n \r\nIf you are interested, please contact me at my private contact details by Tel: 0034-604-284-281, Fax: 0034-911-881-353, Email: amucioabogados@infocaixa.info \r\n \r\nI am waiting for your answer \r\n \r\nBest regards, \r\n \r\nLawyer: - David Gomez Gonzalez',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','review',0,0),(559,183,'Williamchoic','rodgerwredo@outlook.com','','84.17.62.138','2019-10-10 02:30:33','2019-10-10 09:30:33','When you order 1000 backlinks with this service you get 1000 unique domains, Only receive 1 backlinks from each domain. All domains come with DA above 15-20 and with actual page high PA values. Simple yet very effective service to improve your linkbase and SEO metrics. \r\n \r\nOrder this great service from here today: \r\nhttps://monkeydigital.co/product/unique-domains-backlinks/ \r\n \r\nMultiple offers available \r\n \r\nthanks and regards \r\nMike \r\nmonkeydigital.co@gmail.com',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','review',0,0),(560,183,'LornaLiz','info2@revlight.com.sg','','84.17.62.142','2019-10-10 04:55:03','2019-10-10 11:55:03','Dear Customer, \r\n \r\nWe manufacture High-Definition Security Surveillance Systems for Residential &amp; Commercial uses. All our cameras are metal weatherproof and comes with sony sensor for maximum quality. \r\nIPcam video quality: https://youtu.be/VPG82dnXfWY \r\n \r\n+44 330-024-0982 \r\n+1 866-655-7056 \r\n+91 96508-01219 \r\n+65 6678-6557 \r\nEmail: sales@revlightsecurity.com \r\nW: www.revlightsecurity.com \r\n \r\nHave a nice day! :) \r\n \r\nregards, \r\nJessie Chang \r\n7 Temasek Boulevard, Level 32, Suntec Tower One, Singapore 038987',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','review',0,0),(561,412,'WooCommerce','woocommerce@remoterangler.com','','','2019-10-11 08:14:37','2019-10-11 15:14:37','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(562,412,'WooCommerce','woocommerce@remoterangler.com','','','2019-10-11 08:19:42','2019-10-11 15:19:42','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(564,413,'WooCommerce','woocommerce@remoterangler.com','','','2019-10-17 06:30:46','2019-10-17 13:30:46','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(565,413,'WooCommerce','woocommerce@remoterangler.com','','','2019-10-17 06:30:57','2019-10-17 13:30:57','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(566,183,'Anthonycoods','anthonyHoG@gmail.com','','37.120.142.158','2019-10-27 08:52:30','2019-10-27 15:52:30','您知道目前加密货币市场最赚钱吗？ \r\n您可能已经听说，由于比特币和其他区块链社区项目，许多人已经成为千万富翁。 \r\n \r\n但是您知道吗，区块链社区内部的互动为每个项目参与者带来了利润+个人营业额的10％，而且这种情况每2天发生一次。 \r\n但是您知道您个人有这样的机会吗？ \r\n \r\n成为社区的一部分，并在加密货币的支持下赚钱！ \r\n报名：https://www.crypto-mmm.com/?source=ch',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','review',0,0),(567,89,'izojawemez','uhosyid@mailer.namnerbca.com','','37.115.197.74','2019-11-02 01:23:06','2019-11-02 08:23:06','http://mewkid.net/where-is-xena/ - Amoxicillin 500 Mg Dosage <a href=\"http://mewkid.net/where-is-xena/\" rel=\"nofollow\">Amoxicillin 500mg Dosage</a> djl.imui.remoterangler.com.mal.iv http://mewkid.net/where-is-xena/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','review',0,0),(568,89,'uptopor','ogiheharg@mailer.namnerbca.com','','37.115.197.74','2019-11-02 01:46:49','2019-11-02 08:46:49','http://mewkid.net/where-is-xena/ - Buy Amoxicillin Online <a href=\"http://mewkid.net/where-is-xena/\" rel=\"nofollow\">Amoxicillin 500 Mg</a> tuk.qqky.remoterangler.com.cfe.zr http://mewkid.net/where-is-xena/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','review',0,0),(569,89,'ezlkepe','ewojsirid@mailer.namnerbca.com','','37.115.197.74','2019-11-02 05:08:25','2019-11-02 12:08:25','http://mewkid.net/where-is-xena/ - Amoxicillin 500mg <a href=\"http://mewkid.net/where-is-xena/\" rel=\"nofollow\">Amoxicillin No Prescription</a> zue.qkjh.remoterangler.com.lkg.yq http://mewkid.net/where-is-xena/',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','review',0,0),(570,89,'uhosagahuhar','ehelukee@mailer.namnerbca.com','','37.115.197.74','2019-11-02 05:30:33','2019-11-02 12:30:33','http://mewkid.net/where-is-xena/ - Amoxicillin 500mg Capsules <a href=\"http://mewkid.net/where-is-xena/\" rel=\"nofollow\">Amoxicillin</a> hkf.ugsb.remoterangler.com.azp.ee http://mewkid.net/where-is-xena/',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','review',0,0),(571,89,'voraiweutiwn','evunokyi@email.namnerbca.com','','5.248.225.93','2019-11-02 11:41:27','2019-11-02 18:41:27','http://mewkid.net/where-is-xena/ - Amoxicillin 500 Mg <a href=\"http://mewkid.net/where-is-xena/\" rel=\"nofollow\">Amoxicillin 500 Mg Dosage</a> sim.mikk.remoterangler.com.nak.jh http://mewkid.net/where-is-xena/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.51','review',0,0),(572,89,'acvkifoziduox','onokekt@email.namnerbca.com','','5.248.225.93','2019-11-02 12:08:14','2019-11-02 19:08:14','http://mewkid.net/where-is-xena/ - Amoxicillin Without Prescription <a href=\"http://mewkid.net/where-is-xena/\" rel=\"nofollow\">Buy Amoxicillin Online</a> yvk.xkxb.remoterangler.com.vtm.mw http://mewkid.net/where-is-xena/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299','review',0,0),(573,183,'Brenda Walker','gravalese@verizon.net','','173.69.59.254','2019-11-03 10:26:15','2019-11-03 18:26:15','Simple, but great idea!  I have been looking for something like this for a while.  I will be buying another one and get some for Christmas gifts!',0,'1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15','review',0,0),(574,427,'ActionScheduler','','','','2019-11-04 16:20:56','2019-11-05 00:20:56','action created',0,'1','ActionScheduler','action_log',0,0),(575,428,'ActionScheduler','','','','2019-11-04 16:20:56','2019-11-05 00:20:56','action created',0,'1','ActionScheduler','action_log',0,0),(576,429,'ActionScheduler','','','','2019-11-04 16:20:56','2019-11-05 00:20:56','action created',0,'1','ActionScheduler','action_log',0,0),(577,430,'ActionScheduler','','','','2019-11-04 16:21:36','2019-11-05 00:21:36','action created',0,'1','ActionScheduler','action_log',0,0),(578,427,'ActionScheduler','','','','2019-11-04 16:22:02','2019-11-05 00:22:02','action started',0,'1','ActionScheduler','action_log',0,0),(579,427,'ActionScheduler','','','','2019-11-04 16:22:02','2019-11-05 00:22:02','action complete',0,'1','ActionScheduler','action_log',0,0),(580,428,'ActionScheduler','','','','2019-11-04 16:22:02','2019-11-05 00:22:02','action started',0,'1','ActionScheduler','action_log',0,0),(581,428,'ActionScheduler','','','','2019-11-04 16:22:02','2019-11-05 00:22:02','action complete',0,'1','ActionScheduler','action_log',0,0),(582,429,'ActionScheduler','','','','2019-11-04 16:22:02','2019-11-05 00:22:02','action started',0,'1','ActionScheduler','action_log',0,0),(583,429,'ActionScheduler','','','','2019-11-04 16:22:02','2019-11-05 00:22:02','action complete',0,'1','ActionScheduler','action_log',0,0),(584,430,'ActionScheduler','','','','2019-11-04 16:22:02','2019-11-05 00:22:02','action started',0,'1','ActionScheduler','action_log',0,0),(585,430,'ActionScheduler','','','','2019-11-04 16:22:02','2019-11-05 00:22:02','action complete',0,'1','ActionScheduler','action_log',0,0);
/*!40000 ALTER TABLE `wprl_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_links`
--

DROP TABLE IF EXISTS `wprl_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_links`
--

LOCK TABLES `wprl_links` WRITE;
/*!40000 ALTER TABLE `wprl_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_options`
--

DROP TABLE IF EXISTS `wprl_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=201189 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_options`
--

LOCK TABLES `wprl_options` WRITE;
/*!40000 ALTER TABLE `wprl_options` DISABLE KEYS */;
INSERT INTO `wprl_options` VALUES (1,'siteurl','http://remoterangler.com','yes'),(2,'home','http://remoterangler.com','yes'),(3,'blogname','Remote Rangler','yes'),(4,'blogdescription','Stop Losing The Remotes!','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','joewillett44@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:17:{i:0;s:35:\"backupwordpress/backupwordpress.php\";i:1;s:24:\"bb-plugin/fl-builder.php\";i:2;s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";i:3;s:33:\"classic-editor/classic-editor.php\";i:4;s:37:\"download-manager/download-manager.php\";i:5;s:47:\"file-manager-advanced/file_manager_advanced.php\";i:6;s:25:\"gp-premium/gp-premium.php\";i:7;s:35:\"insert-headers-and-footers/ihaf.php\";i:8;s:19:\"jetpack/jetpack.php\";i:9;s:29:\"pdf-embedder/pdf_embedder.php\";i:10;s:29:\"use-any-font/use-any-font.php\";i:11;s:70:\"woo-shipment-tracking-order-tracking/woocommerce-shipment-tracking.php\";i:12;s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";i:13;s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";i:14;s:45:\"woocommerce-services/woocommerce-services.php\";i:15;s:27:\"woocommerce/woocommerce.php\";i:16;s:24:\"wordpress-seo/wp-seo.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:2:{i:0;s:73:\"/home/willet5/remoterangler.com/wp-content/themes/generatepress/style.css\";i:2;s:0:\"\";}','no'),(40,'template','generatepress','yes'),(41,'stylesheet','generatepress','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:9:{i:2;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday&mdash;Friday: 9:00AM&ndash;5:00PM\nSaturday &amp; Sunday: 11:00AM&ndash;3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday&mdash;Friday: 9:00AM&ndash;5:00PM\nSaturday &amp; Sunday: 11:00AM&ndash;3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:5;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;i:6;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday&mdash;Friday: 9:00AM&ndash;5:00PM\nSaturday &amp; Sunday: 11:00AM&ndash;3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:7;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:8;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday&mdash;Friday: 9:00AM&ndash;5:00PM\nSaturday &amp; Sunday: 11:00AM&ndash;3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:9;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:2:{s:45:\"woocommerce-services/woocommerce-services.php\";a:2:{i:0;s:17:\"WC_Connect_Loader\";i:1;s:16:\"plugin_uninstall\";}s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','America/Los_Angeles','yes'),(83,'page_for_posts','30','yes'),(84,'page_on_front','27','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','159','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wprl_user_roles','a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:116:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:21:\"access_server_browser\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:37:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:4:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;i:3;a:1:{s:5:\"title\";s:6:\"Search\";}i:4;a:1:{s:5:\"title\";s:6:\"Search\";}}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-8\";}s:9:\"sidebar-3\";a:2:{i:0;s:6:\"text-9\";i:1;s:8:\"search-4\";}s:13:\"array_version\";i:3;s:8:\"footer-1\";a:1:{i:0;s:13:\"media_image-3\";}s:8:\"footer-2\";a:1:{i:0;s:13:\"media_image-4\";}s:8:\"footer-3\";a:1:{i:0;s:13:\"media_image-5\";}}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:4:{s:12:\"_multiwidget\";i:1;i:3;a:15:{s:13:\"attachment_id\";i:176;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_014608-175x300.jpg\";s:5:\"title\";s:21:\"Hang Up Your Remotes!\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:1762;s:6:\"height\";i:3024;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:4;a:15:{s:13:\"attachment_id\";i:61;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-300x295.jpg\";s:5:\"title\";s:29:\"How Many Remotes Do You Have?\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:3015;s:6:\"height\";i:2964;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:5;a:15:{s:13:\"attachment_id\";i:59;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010536-242x300.jpg\";s:5:\"title\";s:30:\"Stretches To Fit Your Remotes!\";s:4:\"size\";s:6:\"medium\";s:5:\"width\";i:2140;s:6:\"height\";i:2650;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:23:{i:1572915103;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1572915180;a:2:{s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1572916079;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1572916482;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1572917181;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1572923682;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572927861;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1572934482;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1572943490;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572943985;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572944880;a:2:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:20:\"jp_sitemap_cron_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"sitemap-interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1572944882;a:1:{s:32:\"wc_connect_fetch_service_schemas\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572944960;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572980298;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572987637;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572999282;a:1:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1572999292;a:1:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1573027200;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1573074599;a:1:{s:30:\"fl_builder_notifications_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1573340400;a:1:{s:19:\"hmbkp_schedule_hook\";a:1:{s:32:\"dbf0516725d61c97b5608abc37528c11\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:1:{s:2:\"id\";s:10:\"1534984429\";}s:8:\"interval\";i:604800;}}}i:1573354800;a:1:{s:19:\"hmbkp_schedule_hook\";a:1:{s:32:\"e36c611bd773a73625d717314c8f448c\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:1:{s:2:\"id\";s:10:\"1534984430\";}s:8:\"interval\";i:604800;}}}i:1575331200;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}s:7:\"version\";i:2;}','yes'),(127,'category_children','a:0:{}','yes'),(117,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1517696170;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:6:\"text-6\";i:1;s:8:\"search-3\";i:2;s:6:\"text-7\";}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-8\";}s:9:\"sidebar-3\";a:2:{i:0;s:6:\"text-9\";i:1;s:8:\"search-4\";}}}}','yes'),(169,'bsf_force_check_extensions','','no'),(43389,'woocommerce_checkout_highlight_required_fields','yes','yes'),(170,'_uabb_global_settings','a:16:{s:13:\"enable_global\";s:3:\"yes\";s:11:\"theme_color\";s:6:\"f7b91a\";s:16:\"theme_text_color\";s:6:\"808285\";s:12:\"btn_bg_color\";s:6:\"f7b91a\";s:16:\"btn_bg_color_opc\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:6:\"000000\";s:22:\"btn_bg_hover_color_opc\";s:0:\"\";s:14:\"btn_text_color\";s:6:\"ffffff\";s:20:\"btn_text_hover_color\";s:6:\"ffffff\";s:13:\"btn_font_size\";s:0:\"\";s:15:\"btn_line_height\";s:0:\"\";s:18:\"btn_letter_spacing\";s:0:\"\";s:18:\"btn_text_transform\";s:4:\"none\";s:17:\"btn_border_radius\";s:1:\"5\";s:20:\"btn_vertical_padding\";s:0:\"\";s:22:\"btn_horizontal_padding\";s:0:\"\";}','yes'),(166,'fl_themes_subscription_email','7a62702e79766e7a74406767727979766a6e7a','no'),(43390,'woocommerce_demo_store','no','no'),(191,'generate_dynamic_css_output','body{background-color:#efefef;color:#3a3a3a;}a, a:visited{color:#1e73be;text-decoration:none;}a:hover, a:focus, a:active{color:#000000;text-decoration:none;}body .grid-container{max-width:1100px;}body, button, input, select, textarea{font-family:-apple-system, system-ui, BlinkMacSystemFont, \"Segoe UI\", Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\";}.main-navigation .main-nav ul ul li a{font-size:14px;}@media (max-width:768px){.main-title{font-size:30px;}h1{font-size:30px;}h2{font-size:25px;}}.top-bar{background-color:#636363;color:#ffffff;}.top-bar a,.top-bar a:visited{color:#ffffff;}.top-bar a:hover{color:#303030;}.site-header{background-color:#ffffff;color:#3a3a3a;}.site-header a,.site-header a:visited{color:#3a3a3a;}.main-title a,.main-title a:hover,.main-title a:visited{color:#222222;}.site-description{color:#999999;}.main-navigation,.main-navigation ul ul{background-color:#222222;}.main-navigation .main-nav ul li a,.menu-toggle{color:#ffffff;}.main-navigation .main-nav ul li:hover > a,.main-navigation .main-nav ul li:focus > a, .main-navigation .main-nav ul li.sfHover > a{color:#ffffff;background-color:#3f3f3f;}button.menu-toggle:hover,button.menu-toggle:focus,.main-navigation .mobile-bar-items a,.main-navigation .mobile-bar-items a:hover,.main-navigation .mobile-bar-items a:focus{color:#ffffff;}.main-navigation .main-nav ul li[class*=\"current-menu-\"] > a{color:#ffffff;background-color:#3f3f3f;}.main-navigation .main-nav ul li[class*=\"current-menu-\"] > a:hover,.main-navigation .main-nav ul li[class*=\"current-menu-\"].sfHover > a{color:#ffffff;background-color:#3f3f3f;}.navigation-search input[type=\"search\"],.navigation-search input[type=\"search\"]:active{color:#3f3f3f;background-color:#3f3f3f;}.navigation-search input[type=\"search\"]:focus{color:#ffffff;background-color:#3f3f3f;}.main-navigation ul ul{background-color:#3f3f3f;}.main-navigation .main-nav ul ul li a{color:#ffffff;}.main-navigation .main-nav ul ul li:hover > a,.main-navigation .main-nav ul ul li:focus > a,.main-navigation .main-nav ul ul li.sfHover > a{color:#ffffff;background-color:#4f4f4f;}.main-navigation .main-nav ul ul li[class*=\"current-menu-\"] > a{color:#ffffff;background-color:#4f4f4f;}.main-navigation .main-nav ul ul li[class*=\"current-menu-\"] > a:hover,.main-navigation .main-nav ul ul li[class*=\"current-menu-\"].sfHover > a{color:#ffffff;background-color:#4f4f4f;}.separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .one-container .container, .separate-containers .paging-navigation, .inside-page-header{background-color:#ffffff;}.entry-meta{color:#888888;}.entry-meta a,.entry-meta a:visited{color:#666666;}.entry-meta a:hover{color:#1e73be;}.sidebar .widget{background-color:#ffffff;}.sidebar .widget .widget-title{color:#000000;}.footer-widgets{background-color:#ffffff;}.footer-widgets .widget-title{color:#000000;}.site-info{color:#ffffff;background-color:#222222;}.site-info a,.site-info a:visited{color:#ffffff;}.site-info a:hover{color:#606060;}.footer-bar .widget_nav_menu .current-menu-item a{color:#606060;}input[type=\"text\"],input[type=\"email\"],input[type=\"url\"],input[type=\"password\"],input[type=\"search\"],input[type=\"tel\"],input[type=\"number\"],textarea,select{color:#666666;background-color:#fafafa;border-color:#cccccc;}input[type=\"text\"]:focus,input[type=\"email\"]:focus,input[type=\"url\"]:focus,input[type=\"password\"]:focus,input[type=\"search\"]:focus,input[type=\"tel\"]:focus,input[type=\"number\"]:focus,textarea:focus,select:focus{color:#666666;background-color:#ffffff;border-color:#bfbfbf;}button,html input[type=\"button\"],input[type=\"reset\"],input[type=\"submit\"],a.button,a.button:visited{color:#ffffff;background-color:#666666;}button:hover,html input[type=\"button\"]:hover,input[type=\"reset\"]:hover,input[type=\"submit\"]:hover,a.button:hover,button:focus,html input[type=\"button\"]:focus,input[type=\"reset\"]:focus,input[type=\"submit\"]:focus,a.button:focus{color:#ffffff;background-color:#3f3f3f;}.generate-back-to-top,.generate-back-to-top:visited{background-color:rgba( 0,0,0,0.4 );color:#ffffff;}.generate-back-to-top:hover,.generate-back-to-top:focus{background-color:rgba( 0,0,0,0.6 );color:#ffffff;}@media (max-width:768px){.separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .separate-containers .paging-navigation, .one-container .site-content, .inside-page-header{padding:30px;}}.main-navigation ul ul{top:auto;}.navigation-search, .navigation-search input{height:100%;}.rtl .menu-item-has-children .dropdown-menu-toggle{padding-left:20px;}.rtl .main-navigation .main-nav ul li.menu-item-has-children > a{padding-right:20px;}.one-container .sidebar .widget{padding:0px;}','yes'),(92973,'_transient_timeout_bsf_check_product_updates','1573085277','no'),(92974,'_transient_bsf_check_product_updates','1','no'),(1359,'do_activate','0','yes'),(201006,'wc_stripe_version','4.3.0','yes'),(1367,'_transient_shipping-transient-version','1545940231','yes'),(1368,'woocommerce_flat_rate_1_settings','a:3:{s:5:\"title\";s:9:\"Flat rate\";s:10:\"tax_status\";s:7:\"taxable\";s:4:\"cost\";s:3:\".99\";}','yes'),(1383,'jetpack_unique_connection','a:3:{s:9:\"connected\";i:1;s:12:\"disconnected\";i:0;s:7:\"version\";s:5:\"3.6.1\";}','yes'),(1384,'jetpack_sync_settings_max_queue_size','1000','yes'),(1385,'jetpack_sync_settings_max_queue_lag','900','yes'),(43395,'jetpack_sync_full__started','1534984317','no'),(43396,'jetpack_sync_full__params','a:4:{s:7:\"options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;s:5:\"users\";a:1:{i:0;i:1;}}','no'),(43397,'jetpack_sync_full_config','a:4:{s:9:\"constants\";b:1;s:9:\"functions\";b:1;s:7:\"options\";b:1;s:5:\"users\";a:1:{i:0;i:1;}}','no'),(43398,'jetpack_sync_full_enqueue_status','a:4:{s:9:\"constants\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:9:\"functions\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:7:\"options\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:5:\"users\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}}','no'),(1393,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(1394,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(1395,'jetpack_sync_settings_upload_max_rows','500','yes'),(1396,'jetpack_sync_settings_sync_wait_time','10','yes'),(1397,'jetpack_sync_settings_sync_wait_threshold','5','yes'),(1398,'jetpack_sync_settings_enqueue_wait_time','10','yes'),(1399,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(1400,'jetpack_sync_settings_post_types_blacklist','a:0:{}','yes'),(1401,'jetpack_sync_settings_render_filtered_content','0','yes'),(1402,'jetpack_sync_settings_post_meta_whitelist','a:0:{}','yes'),(1403,'jetpack_sync_settings_comment_meta_whitelist','a:0:{}','yes'),(1404,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(1405,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(1406,'jetpack_sync_settings_sync_via_cron','1','yes'),(1407,'jetpack_sync_settings_cron_sync_time_limit','30','yes'),(8204,'WPLANG','','yes'),(1417,'jetpack_active_modules','a:21:{i:0;s:12:\"contact-form\";i:1;s:20:\"custom-content-types\";i:2;s:10:\"custom-css\";i:3;s:21:\"enhanced-distribution\";i:4;s:19:\"gravatar-hovercards\";i:5;s:8:\"json-api\";i:6;s:5:\"latex\";i:7;s:5:\"notes\";i:8;s:13:\"post-by-email\";i:9;s:7:\"protect\";i:10;s:9:\"publicize\";i:11;s:10:\"sharedaddy\";i:12;s:10:\"shortcodes\";i:13;s:10:\"shortlinks\";i:14;s:8:\"sitemaps\";i:15;s:5:\"stats\";i:16;s:13:\"subscriptions\";i:17;s:10:\"vaultpress\";i:18;s:18:\"verification-tools\";i:19;s:17:\"widget-visibility\";i:20;s:7:\"widgets\";}','yes'),(1433,'jetpack_protect_key','4d87290580a4cacd3c83355629419ce854cd5b36','no'),(9165,'wpcom_publish_posts_with_markdown','1','yes'),(1441,'jetpack_sitemap_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(8099,'_transient_orders-transient-version','1571319046','yes'),(1551,'stats_options','a:7:{s:9:\"admin_bar\";b:1;s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:11:\"count_roles\";a:0:{}s:7:\"blog_id\";i:145765292;s:12:\"do_not_track\";b:1;s:10:\"hide_smile\";b:1;s:7:\"version\";s:1:\"9\";}','yes'),(1546,'jetpack_next_sync_time_full_sync','1534984338','yes'),(1547,'woocommerce_wc_services_usps_2_form_settings','O:8:\"stdClass\":8:{s:5:\"title\";s:4:\"USPS\";s:10:\"account_id\";s:0:\"\";s:6:\"origin\";s:5:\"90260\";s:8:\"services\";a:46:{s:3:\"pri\";a:4:{s:2:\"id\";s:3:\"pri\";s:7:\"enabled\";b:1;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:12:\"pri_flat_env\";a:4:{s:2:\"id\";s:12:\"pri_flat_env\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:18:\"pri_large_flat_box\";a:4:{s:2:\"id\";s:18:\"pri_large_flat_box\";s:7:\"enabled\";b:1;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:20:\"pri_large_flat_box_2\";a:4:{s:2:\"id\";s:20:\"pri_large_flat_box_2\";s:7:\"enabled\";b:1;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:18:\"pri_legal_flat_env\";a:4:{s:2:\"id\";s:18:\"pri_legal_flat_env\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:23:\"pri_medium_flat_box_top\";a:4:{s:2:\"id\";s:23:\"pri_medium_flat_box_top\";s:7:\"enabled\";b:1;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:24:\"pri_medium_flat_box_side\";a:4:{s:2:\"id\";s:24:\"pri_medium_flat_box_side\";s:7:\"enabled\";b:1;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:15:\"pri_sm_flat_box\";a:4:{s:2:\"id\";s:15:\"pri_sm_flat_box\";s:7:\"enabled\";b:1;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:19:\"pri_padded_flat_env\";a:4:{s:2:\"id\";s:19:\"pri_padded_flat_env\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:18:\"pri_small_flat_env\";a:4:{s:2:\"id\";s:18:\"pri_small_flat_env\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:15:\"pri_window_flat\";a:4:{s:2:\"id\";s:15:\"pri_window_flat\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:15:\"pri_regional_a1\";a:4:{s:2:\"id\";s:15:\"pri_regional_a1\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:15:\"pri_regional_a2\";a:4:{s:2:\"id\";s:15:\"pri_regional_a2\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:15:\"pri_regional_b1\";a:4:{s:2:\"id\";s:15:\"pri_regional_b1\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:15:\"pri_regional_b2\";a:4:{s:2:\"id\";s:15:\"pri_regional_b2\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:7:\"pri_exp\";a:4:{s:2:\"id\";s:7:\"pri_exp\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:16:\"pri_exp_flat_env\";a:4:{s:2:\"id\";s:16:\"pri_exp_flat_env\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:22:\"pri_exp_legal_flat_env\";a:4:{s:2:\"id\";s:22:\"pri_exp_legal_flat_env\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:23:\"pri_exp_padded_flat_env\";a:4:{s:2:\"id\";s:23:\"pri_exp_padded_flat_env\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:19:\"first_class_stamped\";a:4:{s:2:\"id\";s:19:\"first_class_stamped\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:19:\"first_class_metered\";a:4:{s:2:\"id\";s:19:\"first_class_metered\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:18:\"first_class_parcel\";a:4:{s:2:\"id\";s:18:\"first_class_parcel\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:23:\"first_class_lg_postcard\";a:4:{s:2:\"id\";s:23:\"first_class_lg_postcard\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:20:\"first_class_postcard\";a:4:{s:2:\"id\";s:20:\"first_class_postcard\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:23:\"first_class_lg_env_flat\";a:4:{s:2:\"id\";s:23:\"first_class_lg_env_flat\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:19:\"first_class_package\";a:4:{s:2:\"id\";s:19:\"first_class_package\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:13:\"retail_ground\";a:4:{s:2:\"id\";s:13:\"retail_ground\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:5:\"media\";a:4:{s:2:\"id\";s:5:\"media\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:3:\"gxg\";a:4:{s:2:\"id\";s:3:\"gxg\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:12:\"pri_exp_intl\";a:4:{s:2:\"id\";s:12:\"pri_exp_intl\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:21:\"pri_exp_intl_env_flat\";a:4:{s:2:\"id\";s:21:\"pri_exp_intl_env_flat\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:23:\"pri_exp_intl_legal_flat\";a:4:{s:2:\"id\";s:23:\"pri_exp_intl_legal_flat\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:24:\"pri_exp_intl_padded_flat\";a:4:{s:2:\"id\";s:24:\"pri_exp_intl_padded_flat\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:8:\"pri_intl\";a:4:{s:2:\"id\";s:8:\"pri_intl\";s:7:\"enabled\";b:1;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:15:\"pri_intl_lg_box\";a:4:{s:2:\"id\";s:15:\"pri_intl_lg_box\";s:7:\"enabled\";b:1;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:19:\"pri_intl_md_box_top\";a:4:{s:2:\"id\";s:19:\"pri_intl_md_box_top\";s:7:\"enabled\";b:1;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:20:\"pri_intl_md_box_side\";a:4:{s:2:\"id\";s:20:\"pri_intl_md_box_side\";s:7:\"enabled\";b:1;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:15:\"pri_intl_sm_box\";a:4:{s:2:\"id\";s:15:\"pri_intl_sm_box\";s:7:\"enabled\";b:1;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:17:\"pri_intl_env_flat\";a:4:{s:2:\"id\";s:17:\"pri_intl_env_flat\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:19:\"pri_intl_legal_flat\";a:4:{s:2:\"id\";s:19:\"pri_intl_legal_flat\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:20:\"pri_intl_padded_flat\";a:4:{s:2:\"id\";s:20:\"pri_intl_padded_flat\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:20:\"pri_intl_sm_env_flat\";a:4:{s:2:\"id\";s:20:\"pri_intl_sm_env_flat\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:20:\"pri_intl_window_flat\";a:4:{s:2:\"id\";s:20:\"pri_intl_window_flat\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:16:\"first_class_intl\";a:4:{s:2:\"id\";s:16:\"first_class_intl\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:23:\"first_class_intl_lg_env\";a:4:{s:2:\"id\";s:23:\"first_class_intl_lg_env\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}s:23:\"first_class_intl_letter\";a:4:{s:2:\"id\";s:23:\"first_class_intl_letter\";s:7:\"enabled\";b:0;s:10:\"adjustment\";i:0;s:15:\"adjustment_type\";s:4:\"flat\";}}s:13:\"fallback_rate\";i:0;s:11:\"rate_filter\";s:3:\"all\";s:10:\"rate_class\";s:6:\"retail\";s:14:\"packing_method\";s:8:\"by_price\";}','yes'),(1472,'jetpack_constants_sync_checksum','a:31:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:3915004422;s:14:\"WP_CONTENT_DIR\";i:1191141569;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:4234613745;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:2328450637;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1839787262;s:14:\"WC_PLUGIN_FILE\";i:2862875151;s:10:\"WC_ABSPATH\";i:620676921;s:18:\"WC_PLUGIN_BASENAME\";i:1149093810;s:10:\"WC_VERSION\";i:2961730857;s:19:\"WOOCOMMERCE_VERSION\";i:2961730857;s:21:\"WC_ROUNDING_PRECISION\";i:498629140;s:25:\"WC_DISCOUNT_ROUNDING_MODE\";i:450215437;s:20:\"WC_TAX_ROUNDING_MODE\";i:2212294583;s:12:\"WC_DELIMITER\";i:2455911554;s:10:\"WC_LOG_DIR\";i:1682162285;s:22:\"WC_SESSION_CACHE_GROUP\";i:4278978988;s:22:\"WC_TEMPLATE_DEBUG_MODE\";i:734881840;}','yes'),(1473,'jpsq_sync_checkout','0:0','no'),(1474,'jetpack_sync_https_history_home_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:4:\"http\";}','yes'),(1475,'jetpack_sync_https_history_site_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:4:\"http\";}','yes'),(1870,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','yes'),(1854,'widget_blog-stats','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1857,'widget_widget_contact_info','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1858,'widget_top-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(1825,'open_graph_protocol_site_type','','yes'),(1826,'facebook_admins','a:0:{}','yes'),(3881,'jetpack_site_icon_url','http://remoterangler.com/wp-content/uploads/2018/04/cropped-RR-Logo.jpg','yes'),(1795,'stats_cache','a:2:{s:32:\"0e23b9f031a45e3c7d800e553f90d8a8\";a:1:{i:1572901729;a:5:{i:0;a:4:{s:7:\"post_id\";s:3:\"234\";s:10:\"post_title\";s:28:\"Remote Rangler Buyer\'s Guide\";s:14:\"post_permalink\";s:37:\"http://remoterangler.com/buyersguide/\";s:5:\"views\";s:2:\"15\";}i:1;a:4:{s:7:\"post_id\";s:2:\"27\";s:10:\"post_title\";s:0:\"\";s:14:\"post_permalink\";s:25:\"http://remoterangler.com/\";s:5:\"views\";s:1:\"4\";}i:2;a:4:{s:7:\"post_id\";s:2:\"29\";s:10:\"post_title\";s:7:\"Contact\";s:14:\"post_permalink\";s:33:\"http://remoterangler.com/contact/\";s:5:\"views\";s:1:\"2\";}i:3;a:4:{s:7:\"post_id\";s:1:\"0\";s:10:\"post_title\";s:9:\"Home page\";s:14:\"post_permalink\";s:25:\"http://remoterangler.com/\";s:5:\"views\";s:1:\"1\";}i:4;a:4:{s:7:\"post_id\";s:3:\"151\";s:10:\"post_title\";s:26:\"Remote Rangler - 4 Holders\";s:14:\"post_permalink\";s:58:\"http://remoterangler.com/product/remote-rangler-4-holders/\";s:5:\"views\";s:1:\"1\";}}}s:32:\"6683765e019f84b07defd66ff84c3186\";a:1:{i:1572901729;a:0:{}}}','yes'),(9197,'_journey_details','a:4:{i:0;a:2:{s:16:\"previous_version\";s:5:\"1.6.9\";s:15:\"current_version\";s:5:\"1.7.0\";}i:1;a:2:{s:16:\"previous_version\";s:5:\"1.7.0\";s:15:\"current_version\";s:6:\"1.10.0\";}i:2;a:2:{s:16:\"previous_version\";s:6:\"1.10.0\";s:15:\"current_version\";s:6:\"1.13.2\";}i:3;a:2:{s:16:\"previous_version\";s:6:\"1.13.2\";s:15:\"current_version\";s:6:\"1.18.1\";}}','yes'),(31333,'wpdm_latest_check','1572913454','yes'),(10799,'EWD_OTP_Percentages','100','yes'),(10801,'EWD_OTP_Hide_Blank_Fields','No','yes'),(10802,'EWD_OTP_Form_Instructions','Enter the order number you would like to track in the form below.','yes'),(10803,'EWD_OTP_Timezone','Europe/London','yes'),(10804,'EWD_OTP_Display_Print_Button','No','yes'),(10805,'EWD_OTP_Show_TinyMCE','Yes','yes'),(10806,'EWD_OTP_Access_Role','administrator','yes'),(10807,'EWD_OTP_WooCommerce_Integration','No','yes'),(10808,'EWD_OTP_WooCommerce_Prefix','WC_','yes'),(10809,'EWD_OTP_WooCommerce_Random_Suffix','Yes','yes'),(10810,'EWD_OTP_Display_Graphic','Default','yes'),(10811,'EWD_OTP_Mobile_Stylesheet','No','yes'),(10812,'EWD_OTP_Customer_Notes_Email','None','yes'),(10813,'EWD_OTP_Customer_Order_Email','None','yes'),(10814,'EWD_OTP_Allow_Customer_Downloads','No','yes'),(10815,'EWD_OTP_Allow_Sales_Rep_Downloads','No','yes'),(10816,'EWD_OTP_Customer_Confirmation','None','yes'),(10817,'EWD_OTP_Sales_Rep_Confirmation','None','yes'),(10818,'EWD_OTP_Cut_Off_Days','60','yes'),(10819,'EWD_OTP_Zendesk_Integration','No','yes'),(10820,'EWD_OTP_Allow_Order_Payments','No','yes'),(10821,'EWD_OTP_Default_Payment_Status','None','yes'),(10822,'EWD_OTP_PayPal_Email_Address','','yes'),(10823,'EWD_OTP_Pricing_Currency_Code','AUD','yes'),(10824,'EWD_OTP_Thank_You_URL','','yes'),(10825,'EWD_OTP_Use_SMTP','Yes','yes'),(10826,'EWD_OTP_Port','25','yes'),(10827,'EWD_OTP_Encryption_Type','ssl','yes'),(10828,'EWD_OTP_Email_Messages_Array','a:1:{i:0;a:2:{s:4:\"Name\";s:7:\"Default\";s:7:\"Message\";s:69:\"Hello [order-name], You have an update for your order [order-number]!\";}}','yes'),(10829,'EWD_OTP_Statuses_Array','a:4:{i:0;a:4:{s:6:\"Status\";s:8:\"Received\";s:10:\"Percentage\";s:2:\"25\";s:7:\"Message\";s:7:\"Default\";s:8:\"Internal\";s:2:\"No\";}i:1;a:4:{s:6:\"Status\";s:9:\"Processed\";s:10:\"Percentage\";s:2:\"50\";s:7:\"Message\";s:7:\"Default\";s:8:\"Internal\";s:2:\"No\";}i:2;a:4:{s:6:\"Status\";s:7:\"Shipped\";s:10:\"Percentage\";s:2:\"75\";s:7:\"Message\";s:7:\"Default\";s:8:\"Internal\";s:2:\"No\";}i:3;a:4:{s:6:\"Status\";s:9:\"Completed\";s:10:\"Percentage\";s:3:\"100\";s:7:\"Message\";s:7:\"Default\";s:8:\"Internal\";s:2:\"No\";}}','yes'),(10830,'EWD_OTP_Order_Information','a:1:{i:0;s:0:\"\";}','yes'),(10831,'EWD_OTP_Emails_Sent','a:0:{}','yes'),(10832,'EWD_OTP_Links_Checked','a:0:{}','yes'),(10833,'EWD_OTP_Tracking_Links_Checked','a:0:{}','yes'),(10834,'EWD_OTP_Remove_Old_Statistics_Checked','2018-05-08','yes'),(10835,'EWD_OTP_Full_Version','No','yes'),(10836,'EWD_OTP_Custom_CSS','','yes'),(10837,'EWD_OTP_AJAX_Reload','No','yes'),(10838,'EWD_OTP_New_Window','No','yes'),(10839,'EWD_OTP_Order_Email','Never','yes'),(10840,'EWD_OTP_Install_Flag','Yes','yes'),(10841,'EWD_OTP_Run_Tutorial','No','yes'),(1554,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:4206373346;s:13:\"update_themes\";i:2043290188;s:11:\"update_core\";i:638570711;}','yes'),(2088,'woocommerce_thumbnail_cropping','custom','yes'),(4077,'wpseo-gsc','a:1:{s:7:\"profile\";N;}','yes'),(3958,'wpseo','a:21:{s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:4:\"12.4\";s:24:\"bf_banner_2019_dismissed\";b:0;s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:4:\"shop\";s:20:\"has_multiple_authors\";b:0;s:16:\"environment_type\";s:10:\"production\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";i:1524818688;s:13:\"myyoast-oauth\";b:0;}','yes'),(201021,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1572923844','no'),(194775,'_transient_timeout_jetpack_file_data_7.4.1','1574583049','no'),(194776,'_transient_jetpack_file_data_7.4.1','a:62:{s:32:\"fb5c4814ddc3946a3f22cc838fcb2af3\";a:15:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5813eda53235a9a81a69b1f6a4a15db6\";a:15:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7ef4ca32a1c84fc10ef50c8293cae5df\";a:15:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"c5331bfc2648dfeeebe486736d79a72c\";a:15:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:81:\"Add a customizable contact form to any post or page using the Jetpack Form Block.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:214:\"contact, form, grunion, feedback, submission, contact form, email, feedback, contact form plugin, custom form, custom form plugin, form builder, forms, form maker, survey, contact by jetpack, contact us, forms free\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"275642ae868612fff9f668ce23aef464\";a:15:{s:4:\"name\";s:9:\"Copy Post\";s:11:\"description\";s:53:\"Copy an existing post\'s content into a new draft post\";s:14:\"jumpstart_desc\";s:53:\"Copy an existing post\'s content into a new draft post\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"7.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:15:\"copy, duplicate\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"707c77d2e8cb0c12d094e5423c8beda8\";a:15:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cd499b1678cfe3aabfc8ca0d3eb7e8b9\";a:15:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:88:\"Adds options for CSS preprocessor use, disabling the theme\'s CSS, or custom image width.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5d436678d5e010ac6b0f157aa1021554\";a:15:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"092b94702bb483a5472578283c2103d6\";a:15:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"ee1a10e2ef5733ab19eb1eb552d5ecb3\";a:15:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0ce5c3ac630dea9f41215e48bb0f52f3\";a:15:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"87da2858d4f9cadb6a44fdcf32e8d2b5\";a:15:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"004962cb7cb9ec2b64769ac4df509217\";a:15:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:75:\"Use the LaTeX markup language to write mathematical equations and formulas.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7f408184bee8850d439c01322867e72c\";a:15:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:137:\"Speed up your site and create a smoother viewing experience by loading images as visitors scroll down the screen, instead of all at once.\";s:14:\"jumpstart_desc\";s:164:\"Lazy-loading images improve your site\'s speed and create a smoother viewing experience. Images will load as visitors scroll down the screen, instead of all at once.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:23:\"Appearance, Recommended\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:150:\"mobile, theme, fast images, fast image, image, lazy, lazy load, lazyload, images, lazy images, thumbnail, image lazy load, lazy loading, load, loading\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2ad914b747f382ae918ed3b37077d4a1\";a:15:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"589982245aa6f495b72ab7cf57a1a48e\";a:15:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d3bec8e063d637bc285018241b783725\";a:15:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6ab1c3e749bcfba2dedbaebe6c9fc614\";a:15:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f07fde8db279ffb0116c727df72c6374\";a:15:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:118:\"Jetpack’s downtime monitoring will continuously watch your site, and alert you the moment that downtime is detected.\";s:14:\"jumpstart_desc\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:123:\"monitor, uptime, downtime, monitoring, maintenance, maintenance mode, offline, site is down, site down, down, repair, error\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"136a5445a49150db75472862f3d3aefb\";a:15:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0b7b5e3ff80355a67c5485b0d00cd1a2\";a:15:{s:4:\"name\";s:9:\"Asset CDN\";s:11:\"description\";s:154:\"Jetpack’s Site Accelerator loads your site faster by optimizing your images and serving your images and static files from our global network of servers.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"6.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:160:\"site accelerator, accelerate, static, assets, javascript, css, files, performance, cdn, bandwidth, content delivery network, pagespeed, combine js, optimize css\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4484ac68583fbbaab0ef698cdc986950\";a:15:{s:4:\"name\";s:9:\"Image CDN\";s:11:\"description\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:171:\"photon, photo cdn, image cdn, speed, compression, resize, responsive images, responsive, content distribution network, optimize, page speed, image optimize, photon jetpack\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6f30193afa5b1360e3fa2676501b5e3a\";a:15:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"3e9f8bd3755d92e8e5d06966a957beb8\";a:15:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:135:\"Protect yourself from brute force and distributed brute force attacks, which are the most common way for hackers to get into your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:173:\"security, jetpack protect, secure, protection, botnet, brute force, protect, login, bot, password, passwords, strong passwords, strong password, wp-login.php,  protect admin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0cacc8ab2145ad11cb54d181a98aa550\";a:15:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:128:\"Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:220:\"facebook, jetpack publicize, twitter, tumblr, linkedin, social, tweet, connections, sharing, social media, automated, automated sharing, auto publish, auto tweet and like, auto tweet, facebook auto post, facebook posting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"a528c2f803a92c5c2effa67cd33ab33a\";a:15:{s:4:\"name\";s:20:\"Progressive Web Apps\";s:11:\"description\";s:85:\"Speed up and improve the reliability of your site using the latest in web technology.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"18\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:26:\"manifest, pwa, progressive\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5fdd42d482712fbdaf000b28ea7adce9\";a:15:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:360:\"related, jetpack related posts, related posts for wordpress, related posts, popular posts, popular, related content, related post, contextual, context, contextual related posts, related articles, similar posts, easy related posts, related page, simple related posts, free related posts, related thumbnails, similar, engagement, yet another related posts plugin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2c5096ef610018e98a8bcccfbea4471e\";a:15:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:87:\"Enhanced search, powered by Elasticsearch, a powerful replacement for WordPress search.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:110:\"search, elastic, elastic search, elasticsearch, fast search, search results, search performance, google search\";s:12:\"plan_classes\";s:8:\"business\";}s:32:\"0d81dd7df3ad2f245e84fd4fb66bf829\";a:15:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"32aaa676b3b6c9f3ef22430e1e0bca24\";a:15:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:120:\"Add Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:229:\"share, sharing, sharedaddy, social buttons, buttons, share facebook, share twitter, social media sharing, social media share, social share, icons, email, facebook, twitter, linkedin, pinterest, pocket, social widget, social media\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"948472b453cda59b38bb7c37af889af0\";a:15:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:177:\"Shortcodes are WordPress-specific markup that let you add media from popular sites. This feature is no longer necessary as the editor now handles media embeds rather gracefully.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7d00a6ca0a79fbe893275aaf6ed6ae42\";a:15:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:82:\"Generates shorter links so you can have more space to write on social media sites.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2ea687cec293289a2a3e5f0459e79768\";a:15:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e7cf8a7e0f151ccf7cbdc6d8f118f316\";a:15:{s:4:\"name\";s:14:\"Secure Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"34fb073ed896af853ed48bd5739240cb\";a:15:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"8de0dfff24a17cf0fa0011dfc691a3f3\";a:15:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"Allow users to subscribe to your posts and comments and receive notifications via email\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d89db0d934b39f86065ff58e73594070\";a:15:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"20459cc462babfc5a82adf6b34f6e8b1\";a:15:{s:4:\"name\";s:20:\"Backups and Scanning\";s:11:\"description\";s:100:\"Protect your site with daily or real-time backups and automated virus scanning and threat detection.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:386:\"backup, cloud backup, database backup, restore, wordpress backup, backup plugin, wordpress backup plugin, back up, backup wordpress, backwpup, vaultpress, backups, off-site backups, offsite backup, offsite, off-site, antivirus, malware scanner, security, virus, viruses, prevent viruses, scan, anti-virus, antimalware, protection, safe browsing, malware, wp security, wordpress security\";s:12:\"plan_classes\";s:27:\"personal, business, premium\";}s:32:\"836245eb0a8f0c5272542305a88940c1\";a:15:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e94397a5c47c1be995eff613e65a674f\";a:15:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:101:\"Save on hosting storage and bandwidth costs by streaming fast, ad-free video from our global network.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:118:\"video, videos, videopress, video gallery, video player, videoplayer, mobile video, vimeo, youtube, html5 video, stream\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"032cd76e08467c732ccb026efda0c9cd\";a:15:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"9b3e84beedf2e96f1ac5dd6498d2b1aa\";a:15:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:49:\"Provides additional widgets for use on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7724fd9600745cf93e37cc09282e1a37\";a:15:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";s:12:\"plan_classes\";s:17:\"premium, business\";}s:32:\"c22c48d7cfe9d38dff2864cfea64636a\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"933d4f6d290580156e0652ce850af1b2\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7d266d6546645f42cf52a66387699c50\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2c9ff765b826940496a65c0f927a594a\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6bd77e09440df2b63044cf8cb7963773\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"284c08538b0bdc266315b2cf80b9c044\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b347263e3470979442ebf0514e41e893\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b7be7da643ec641511839ecc6afb6def\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d54f83ff429a8a37ace796de98459411\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0f8b373fa12c825162c0b0bc20b8bbdd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5d7b0750cb34a4a72a44fa67790de639\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"395d8ae651afabb54d1e98440674b384\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"509aac35e28ac722a331f67613cd27ec\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"329b8efce059081d46936ece0c6736b3\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"372e711395f23c466e04d4fd07f73099\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2fe9dc2c7389d4f0825a0b23bc8b19d1\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4744f348db095538d3edcacb0ed99c89\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"01987a7ba5e19786f2992501add8181a\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5b8f8e5b5a1887e3c0393cb78d5143a3\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(31316,'pdfemb_poweredby','1','no'),(43379,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(43380,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(43375,'woocommerce_erasure_request_removes_order_data','no','no'),(43376,'woocommerce_erasure_request_removes_download_data','no','no'),(43377,'wp_page_for_privacy_policy','','yes'),(5581,'bsf-updater-version','1.22.67\r\n','yes'),(31332,'wpdm_latest','s:3845:\"a:111:{s:16:\"download-manager\";s:5:\"5.0.2\";s:19:\"wpdm-access-request\";s:3:\"1.0\";s:14:\"wpdm-accordion\";s:3:\"1.0\";s:16:\"wpdm-accordion-x\";s:3:\"1.0\";s:19:\"wpdm-activecampaign\";s:3:\"1.0\";s:27:\"wpdm-advanced-custom-fields\";s:5:\"1.9.3\";s:20:\"wpdm-advanced-search\";s:3:\"1.0\";s:14:\"wpdm-amazon-s3\";s:5:\"2.7.6\";s:8:\"wpdm-api\";s:3:\"1.0\";s:17:\"wpdm-archive-page\";s:5:\"3.0.1\";s:12:\"wpdm-audiojs\";s:3:\"1.0\";s:15:\"wpdm-authorship\";s:3:\"1.0\";s:14:\"wpdm-autoshare\";s:3:\"1.0\";s:18:\"wpdm-block-hotlink\";s:3:\"1.0\";s:16:\"wpdm-blocks copy\";s:3:\"1.0\";s:12:\"wpdm-box-com\";s:3:\"1.0\";s:19:\"wpdm-brand-elements\";s:3:\"1.0\";s:15:\"wpdm-buddypress\";s:3:\"1.0\";s:21:\"wpdm-button-templates\";s:3:\"1.0\";s:21:\"wpdm-campaign-monitor\";s:3:\"1.0\";s:11:\"wpdm-catman\";s:3:\"1.0\";s:13:\"wpdm-colorbox\";s:3:\"1.0\";s:21:\"wpdm-constant-contact\";s:3:\"1.0\";s:15:\"wpdm-convertkit\";s:3:\"1.0\";s:17:\"wpdm-csv-importer\";s:3:\"1.0\";s:24:\"wpdm-custom-access-level\";s:5:\"2.9.1\";s:18:\"wpdm-custom-fields\";s:3:\"1.0\";s:19:\"wpdm-daily-download\";s:3:\"1.0\";s:19:\"wpdm-default-values\";s:3:\"1.0\";s:8:\"wpdm-dev\";s:3:\"1.0\";s:20:\"wpdm-download-button\";s:5:\"2.7.0\";s:18:\"wpdm-download-form\";s:3:\"1.0\";s:20:\"wpdm-download-period\";s:3:\"1.0\";s:12:\"wpdm-dropbox\";s:3:\"1.0\";s:17:\"wpdm-email-editor\";s:3:\"1.0\";s:23:\"wpdm-email-notification\";s:5:\"1.4.0\";s:24:\"wpdm-extended-shortcodes\";s:3:\"1.0\";s:17:\"wpdm-facebook-app\";s:3:\"1.0\";s:19:\"wpdm-facebook-login\";s:3:\"1.0\";s:19:\"wpdm-facebook-share\";s:3:\"1.0\";s:14:\"wpdm-file-cart\";s:3:\"1.0\";s:17:\"wpdm-file-hosting\";s:5:\"1.3.7\";s:16:\"wpdm-filemanager\";s:3:\"1.0\";s:14:\"wpdm-form-lock\";s:5:\"1.7.0\";s:13:\"wpdm-frontend\";s:3:\"1.0\";s:21:\"wpdm-ftp-file-browser\";s:3:\"1.0\";s:25:\"wpdm-ftp-file-browser-old\";s:3:\"1.0\";s:17:\"wpdm-google-drive\";s:3:\"1.0\";s:21:\"wpdm-gutenberg-blocks\";s:3:\"1.0\";s:25:\"wpdm-gutenberg-blocks-src\";s:3:\"1.0\";s:14:\"wpdm-i-contact\";s:3:\"1.0\";s:20:\"wpdm-import-filebase\";s:3:\"1.0\";s:16:\"wpdm-invoice-pdf\";s:3:\"1.0\";s:18:\"wpdm-lazy-download\";s:3:\"1.0\";s:10:\"wpdm-m2cpt\";s:3:\"1.0\";s:10:\"wpdm-m324x\";s:3:\"1.0\";s:12:\"wpdm-madmimi\";s:3:\"1.0\";s:14:\"wpdm-mailchimp\";s:3:\"1.0\";s:15:\"wpdm-newsletter\";s:3:\"1.0\";s:13:\"wpdm-onedrive\";s:3:\"1.0\";s:15:\"wpdm-optinmagic\";s:3:\"1.0\";s:18:\"wpdm-package-lists\";s:3:\"1.0\";s:21:\"wpdm-package-redirect\";s:3:\"1.0\";s:17:\"wpdm-pad-importer\";s:3:\"1.0\";s:18:\"wpdm-page-template\";s:3:\"1.0\";s:14:\"wpdm-pathfixer\";s:3:\"1.0\";s:16:\"wpdm-pdf-stamper\";s:3:\"1.0\";s:15:\"wpdm-pdf-viewer\";s:5:\"1.2.6\";s:18:\"wpdm-pinterest-pin\";s:3:\"1.0\";s:19:\"wpdm-prepaid_credit\";s:5:\"1.7.0\";s:20:\"wpdm-private-message\";s:3:\"1.0\";s:20:\"wpdm-profile-manager\";s:3:\"1.0\";s:21:\"wpdm-sms-notification\";s:3:\"1.0\";s:19:\"wpdm-social-connect\";s:3:\"1.0\";s:18:\"wpdm-speed-control\";s:3:\"1.0\";s:20:\"wpdm-template-helper\";s:3:\"1.0\";s:19:\"wpdm-tinymce-button\";s:5:\"2.7.4\";s:9:\"wpdm-tmdb\";s:3:\"1.0\";s:19:\"wpdm-twitter-follow\";s:3:\"1.0\";s:19:\"wpdm-update-checker\";s:3:\"1.0\";s:17:\"wpdm-user-reviews\";s:3:\"1.0\";s:15:\"wpdm-users-pack\";s:3:\"1.0\";s:14:\"wpdm-watermark\";s:3:\"1.0\";s:13:\"wpdm-webhooks\";s:3:\"1.0\";s:9:\"wpdm-zoho\";s:3:\"1.0\";s:10:\"wpdmpp-2co\";s:3:\"1.0\";s:16:\"wpdmpp-PaypalPro\";s:3:\"1.0\";s:14:\"wpdmpp-advcash\";s:3:\"1.0\";s:13:\"wpdmpp-alipay\";s:3:\"1.0\";s:20:\"wpdmpp-authorize_net\";s:3:\"1.0\";s:13:\"wpdmpp-bitpay\";s:3:\"1.0\";s:14:\"wpdmpp-bluepay\";s:3:\"1.0\";s:16:\"wpdmpp-braintree\";s:3:\"1.0\";s:15:\"wpdmpp-coinbase\";s:3:\"1.0\";s:15:\"wpdmpp-data-api\";s:3:\"1.0\";s:17:\"wpdmpp-fastspring\";s:3:\"1.0\";s:16:\"wpdmpp-instamojo\";s:3:\"1.0\";s:22:\"wpdmpp-linked-products\";s:3:\"1.0\";s:13:\"wpdmpp-mollie\";s:3:\"1.0\";s:13:\"wpdmpp-orange\";s:3:\"1.0\";s:13:\"wpdmpp-paddle\";s:3:\"1.0\";s:14:\"wpdmpp-payfast\";s:3:\"1.0\";s:11:\"wpdmpp-payu\";s:3:\"1.0\";s:16:\"wpdmpp-payumoney\";s:3:\"1.0\";s:12:\"wpdmpp-payza\";s:3:\"1.0\";s:19:\"wpdmpp-sales-report\";s:3:\"1.0\";s:13:\"wpdmpp-skrill\";s:3:\"1.0\";s:13:\"wpdmpp-stripe\";s:5:\"1.4.0\";s:12:\"wpdmpp-wepay\";s:3:\"1.0\";s:15:\"wpdmpp-worldpay\";s:3:\"1.0\";s:15:\"wppromembership\";s:5:\"2.4.5\";}\";','yes'),(5600,'uaf_css_updated_timestamp','1561835845','yes'),(43498,'hmbkp_schedule_1534984429','a:8:{s:11:\"max_backups\";i:2;s:8:\"excludes\";a:0:{}s:4:\"type\";s:8:\"complete\";s:12:\"reoccurrence\";s:6:\"weekly\";s:19:\"schedule_start_time\";i:1535238000;s:5:\"email\";a:1:{s:5:\"email\";s:19:\"mawillett@gmail.com\";}s:14:\"duration_total\";i:105647921960;s:16:\"backup_run_count\";i:68;}','yes'),(43499,'hmbkp_schedule_1534984430','a:7:{s:11:\"max_backups\";i:3;s:8:\"excludes\";a:0:{}s:4:\"type\";s:8:\"complete\";s:12:\"reoccurrence\";s:6:\"weekly\";s:19:\"schedule_start_time\";i:1535252400;s:14:\"duration_total\";i:101009458426;s:16:\"backup_run_count\";i:65;}','yes'),(10844,'plugin_error','','yes'),(5608,'uaf_current_version','5.3','yes'),(5609,'uaf_font_data','null','yes'),(5614,'uaf_server_status','test_successfull','yes'),(5615,'uaf_server_msg','','yes'),(5625,'uaf_api_key','QFWZ9CNEVYBL4T3U6O7LVASG160925030502','yes'),(5626,'uaf_api_package','corporate','yes'),(10852,'widget_ewd_otp_tracking_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5745,'generate_background_settings','a:3:{s:12:\"header_image\";s:0:\"\";s:13:\"header_repeat\";s:9:\"no-repeat\";s:11:\"header_size\";s:5:\"cover\";}','yes'),(43446,'generate_db_version','2.3.2','no'),(31890,'wc_connect_error_notice','O:8:\"WP_Error\":2:{s:6:\"errors\";a:1:{s:22:\"product_missing_weight\";a:1:{i:0;s:81:\"Product ( ID: 95 ) did not include a weight. Shipping rates cannot be calculated.\";}}s:10:\"error_data\";a:1:{s:22:\"product_missing_weight\";a:1:{s:10:\"product_id\";i:95;}}}','yes'),(31891,'woocommerce_wc_services_usps_2_failure_timestamp','1572758755','yes'),(328,'edd_sl_2037e11781ed7c2f9f6ad9ba9175f7d9','a:2:{s:7:\"timeout\";i:1572894478;s:5:\"value\";s:142469:\"{\"new_version\":\"1.8.3\",\"stable_version\":\"1.8.3\",\"name\":\"GP Premium\",\"slug\":\"gp-premium\",\"url\":\"https:\\/\\/generatepress.com\\/downloads\\/gp-premium\\/?changelog=1\",\"last_updated\":\"2019-11-04 10:53:48\",\"homepage\":\"https:\\/\\/generatepress.com\\/downloads\\/gp-premium\\/\",\"package\":\"https:\\/\\/generatepress.com\\/edd-sl\\/package_download\\/MTU3Mjk3MzY3ODpiZjY1MjVlMDkwNTAxYzg1ZDMyMjUxY2QxODUxYmMwODoyNTQ0MTpiN2Y3MTMwZTQwMTQ0YzM5MjE3YzgyZWQ4NDA1MTFmMTpodHRwQC8vcmVtb3RlcmFuZ2xlci5jb206MA==\",\"download_link\":\"https:\\/\\/generatepress.com\\/edd-sl\\/package_download\\/MTU3Mjk3MzY3ODpiZjY1MjVlMDkwNTAxYzg1ZDMyMjUxY2QxODUxYmMwODoyNTQ0MTpiN2Y3MTMwZTQwMTQ0YzM5MjE3YzgyZWQ4NDA1MTFmMTpodHRwQC8vcmVtb3RlcmFuZ2xlci5jb206MA==\",\"sections\":{\"description\":\"<p>GP Premium is one powerful plugin that includes all of our awesome add-ons, which you can turn on and off as needed.<\\/p>\\n\",\"changelog\":\"<p><strong>(6\\/12\\/2019) - 1.8.3<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Use flexbox for center aligned nav with nav branding<\\/li>\\n<li>Menu Plus: Center overlay off canvas exit button on mobile<\\/li>\\n<li>Menu Plus: Add alt tag to sticky nav logo<\\/li>\\n<li>Menu Plus: Set generate_not_mobile_menu_media_query filter based on mobile menu breakpoint<\\/li>\\n<li>Sections: Remember when text tab is active<\\/li>\\n<li>Sections: Disable visual editor if turned off in profile<\\/li>\\n<li>Typography: Add generate_google_font_display filter<\\/li>\\n<li>WooCommerce: Fix single product sidebar layout metabox option<\\/li>\\n<li>WooCommerce: Reduce carousel thumbnail max-width to 100px to match new thumbnail sizes<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/2\\/2019) - 1.8.2<\\/strong><\\/p>\\n<ul>\\n<li>Elements: Use Page Hero site title color for mobile header site title<\\/li>\\n<li>Menu Plus: Give mobile header site title more left spacing<\\/li>\\n<li>Menu Plus: Fix nav search icon in sticky navigation when using nav branding in Firefox<\\/li>\\n<li>Site Library: Show Site Library tab even if no sites exist<\\/li>\\n<li>Site Library: Show an error message in Site Library if no sites exist<\\/li>\\n<li>Typography: Remove reference to generate_get_navigation_location() function<\\/li>\\n<li>WooCommerce: Remove quantity field arrows when using quantity buttons in Firefox<\\/li>\\n<li>WooCommerce: Remove extra border when loading quantity buttons<\\/li>\\n<li>WooCommerce: Use get_price_html() is sticky add to cart panel<\\/li>\\n<\\/ul>\\n<p><strong>(4\\/24\\/2019) - 1.8.1<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Revert sticky nav duplicate ID fix due to Cyrillic script bug<\\/li>\\n<\\/ul>\\n<p><strong>(4\\/24\\/2019) - 1.8.0<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Apply columns filter to masonry grid sizer<\\/li>\\n<li>Colors: Merge Footer Widgets and Footer controls in Color panel<\\/li>\\n<li>Colors: Remove edit_theme_options capability to Customizer controls (set by default)<\\/li>\\n<li>Disable Elements: Make sure mobile header is disabled when primary navigation is disabled<\\/li>\\n<li>Elements: Add content width option in Layout Element<\\/li>\\n<li>Elements: Fix mobile header logo when mobile menu toggled<\\/li>\\n<li>Elements: Add generate_page_hero_location filter<\\/li>\\n<li>Elements: Add generate_elements_show_object_ids filter to show IDs in Display Rule values<\\/li>\\n<li>Elements: Prevent merged header wrap from conflicting with Elementor controls<\\/li>\\n<li>Elements: Change Container tab name to Content<\\/li>\\n<li>Elements: Add woocommerce_share option to Hooks<\\/li>\\n<li>Elements: Improve WPML compatibility<\\/li>\\n<li>Elements: Improve Polylang compatibility<\\/li>\\n<li>Elements: Prevent PHP notices when adding taxonomy locations to non-existent archives<\\/li>\\n<li>Elements: Add generate_mobile_cart_items hook to hook list<\\/li>\\n<li>Elements: Add generate_element_post_id filter<\\/li>\\n<li>Elements: Escape HTML elements inside Element textarea<\\/li>\\n<li>Elements: Add Beaver Builder templates to the Display Rules<\\/li>\\n<li>Menu Plus: Add mobile header breakpoint option<\\/li>\\n<li>Menu Plus: Add off canvas overlay option<\\/li>\\n<li>Menu Plus: Add navigation as header option<\\/li>\\n<li>Menu Plus: Remove navigation logo option if navigation as header set<\\/li>\\n<li>Menu Plus: Add sticky navigation logo option<\\/li>\\n<li>Menu Plus: Allow site title in mobile header instead of logo<\\/li>\\n<li>Menu Plus: Add option to move exit button inside the off canvas panel<\\/li>\\n<li>Menu Plus: Change Slideout Navigation name to Off Canvas Panel<\\/li>\\n<li>Menu Plus: Only re-focus after slideout close on escape key<\\/li>\\n<li>Menu Plus: Give close slideout event a name so it can be removed<\\/li>\\n<li>Menu Plus: Remove invalid transition-delay<\\/li>\\n<li>Menu Plus: Improve slideout overlay transition<\\/li>\\n<li>Menu Plus: Add mobile open\\/close icons to GPP font<\\/li>\\n<li>Menu Plus: Allow dynamic widget classes in off canvas panel (fixes WC range slider widget issue)<\\/li>\\n<li>Menu Plus: Basic compatibility with future SVG icons<\\/li>\\n<li>Menu Plus: Prevent duplicate IDs when sticky navigation is cloned<\\/li>\\n<li>Secondary Nav: Add dropdown direction option<\\/li>\\n<li>Secondary Nav: Basic compatibility with future SVG icons<\\/li>\\n<li>Sections: Fix section editor issues in WP 5.0<\\/li>\\n<li>Sections: Show Better Font Awesome icon in editor<\\/li>\\n<li>Sites: Re-design UI<\\/li>\\n<li>Sites: Add option to activate as a module like all the other modules<\\/li>\\n<li>Sites: Don\'t show backup options button if no options exist<\\/li>\\n<li>Sites: Make JS action classes more specific to the site library<\\/li>\\n<li>Sites: Set mime types of content.xml and widgets.wie<\\/li>\\n<li>Spacing: Add header padding option for mobile<\\/li>\\n<li>Spacing: Add widget padding option for mobile<\\/li>\\n<li>Spacing: Add footer widgets padding option for mobile<\\/li>\\n<li>Spacing: Add content separator option<\\/li>\\n<li>Spacing: Apply mobile menu item width to mobile bar only<\\/li>\\n<li>WooCommerce: Add option for mini cart in the menu<\\/li>\\n<li>WooCommerce: Add option to open off overlay panel on add to cart<\\/li>\\n<li>WooCommerce: Add option to open sticky add to cart panel on single products<\\/li>\\n<li>WooCommerce: Add option to add +\\/- buttons to the quantity fields<\\/li>\\n<li>WooCommerce: Add option to show number of items in cart menu item<\\/li>\\n<li>WooCommerce: Add option to choose single product image area width<\\/li>\\n<li>WooCommerce: Add color options for price slider widget<\\/li>\\n<li>WooCommerce: Use CSS grid for the product archives<\\/li>\\n<li>WooCommerce: Horizontally align add to cart buttons<\\/li>\\n<li>WooCommerce: Re-design the cart widget<\\/li>\\n<li>WooCommerce: Tighten up product info spacing<\\/li>\\n<li>WooCommerce: Improve product tab design to look more like tabs<\\/li>\\n<li>WooCommerce: Simplify single product image display<\\/li>\\n<li>WooCommerce: Use flexbox for quantity\\/add to cart alignment<\\/li>\\n<li>WooCommerce: Improve rating star styles<\\/li>\\n<li>WooCommerce: Use product alignment setting for related\\/upsell products<\\/li>\\n<li>WooCommerce: Remove bottom margin from product image<\\/li>\\n<li>WooCommerce: Organize colors in the Customizer<\\/li>\\n<li>WooCommerce: Remove title attribute from menu cart item<\\/li>\\n<li>WooCommerce: Improve coupon field design<\\/li>\\n<li>WooCommerce: Improve result count\\/ordering styling<\\/li>\\n<li>WooCommerce: Add gap around WC single product images<\\/li>\\n<li>WooCommerce: Remove arrow from checkout button<\\/li>\\n<li>WooCommerce: Hide view cart link on add to cart click<\\/li>\\n<li>WooCommerce: Organize CSS<\\/li>\\n<li>Introduce in-Customizer shortcuts<\\/li>\\n<li>Add generate_disable_customizer_shortcuts filter<\\/li>\\n<\\/ul>\\n<p><strong>(2\\/22\\/2019) - 1.7.8<\\/strong><\\/p>\\n<ul>\\n<li>Sites: Prevent future compatibility issues with Elementor by removing automatic URL replacement<\\/li>\\n<\\/ul>\\n<p><strong>(12\\/17\\/2018) - 1.7.7<\\/strong><\\/p>\\n<ul>\\n<li>Sites: Fix failed content import in specific PHP versions<\\/li>\\n<\\/ul>\\n<p><strong>(12\\/13\\/2018) - 1.7.6<\\/strong><\\/p>\\n<ul>\\n<li>Elements: Hide Add New button when opening saved Element with no type<\\/li>\\n<li>Sections: Show page title in Gutenberg when Sections are active<\\/li>\\n<li>Sections: Fix relative image URLs inside the Section editor<\\/li>\\n<li>Sites: Fix failed content\\/widget import in WP 5.0.1\\/4.9.9<\\/li>\\n<li>Sites: Fix no access to WooCommerce setup wizard<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/21\\/2018) - 1.7.5<\\/strong><\\/p>\\n<ul>\\n<li>Colors: Improve block editor button color preview<\\/li>\\n<li>Menu Plus: Mobile menu items hidden behind content with higher z-index when sticky<\\/li>\\n<li>Menu Plus: Prevent mobile menu from covering mobile toggle when sticky<\\/li>\\n<li>Menu Plus: Don\'t close mobile menu if # is the whole URL<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/19\\/2018) - 1.7.4<\\/strong><\\/p>\\n<ul>\\n<li>Colors: Fix navigation live color preview issues<\\/li>\\n<li>Colors: Move navigation parent item title down in Customizer<\\/li>\\n<li>Elements: Allow slashes in hook names<\\/li>\\n<li>General: Fix smooth scroll anchor location on mobile (requires GP 2.2)<\\/li>\\n<li>Menu Plus: Use https for navigation microdata<\\/li>\\n<li>Menu Plus: Remove header-image class from navigation and mobile header logos<\\/li>\\n<li>Menu Plus: Add navigation search height support to mobile header and sticky nav<\\/li>\\n<li>Typography: Include block editor button in live preview<\\/li>\\n<\\/ul>\\n<p><strong>(10\\/29\\/2018) - 1.7.3<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Allow masonry to be turned off using a boolean filter<\\/li>\\n<li>Blog: Fix load more button appearing when not needed<\\/li>\\n<li>Blog: Remove infinite scroll load more button from WooCommerce archives<\\/li>\\n<li>Blog: Prevent content width option from applying to columns<\\/li>\\n<li>Elements: Fix empty object fields when Post Archive is set<\\/li>\\n<li>Elements: Allow slashes in custom hook field<\\/li>\\n<li>Elements: Allow multiple layout elements per condition<\\/li>\\n<li>Elements: Allow 0 value in mobile padding options<\\/li>\\n<li>Elements: Prevent PHP notice if $post isn\'t an object<\\/li>\\n<li>Gutenberg: Add initial support for live preview spacing of Gutenberg blocks<\\/li>\\n<li>Menu Plus: Add menu-item-align-right class to slideout toggle<\\/li>\\n<li>Menu Plus: Fix JS error in slideout navigation when no menu is set<\\/li>\\n<li>Sites: Fix image shadow on hover<\\/li>\\n<li>Sites: Add message when no plugins are needed<\\/li>\\n<li>Sites: Update custom link URL in menu items<\\/li>\\n<li>Sites: Prevent PHP warning in PHP 7.3<\\/li>\\n<li>Sites: Add generate_sites_ignore_plugins filter<\\/li>\\n<li>Sites: Fix WooCommerce setup wizard conflict with Site Library<\\/li>\\n<li>Sites: Fix PHP notices during WooCommerce setup wizard<\\/li>\\n<li>Typography: Add support for H1-H3 bottom margin options<\\/li>\\n<li>WooCommerce: Add menu-item-align-right class to cart menu item<\\/li>\\n<li>WooCommerce: Fix multi column product spacing on mobile<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/20\\/2018) - 1.7.2<\\/strong><\\/p>\\n<ul>\\n<li>Elements: Fix admin body class spaces<\\/li>\\n<li>General: Fix JS error in anchors when smooth scroll class not added<\\/li>\\n<li>General: Fix sticky navigation offset when using smooth scroll<\\/li>\\n<li>WooCommerce: Apply Elementor Pro WC columns fix to Elementor Pro widget only<\\/li>\\n<li>WooCommerce: Fix BlockUI issue<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/15\\/2018) - 1.7.1<\\/strong><\\/p>\\n<ul>\\n<li>Elements: Fix PHP error in PHP 5.3<\\/li>\\n<li>Elements: Fix Choose Element not showing due to some third party plugins<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/14\\/2018) - 1.7<\\/strong><\\/p>\\n<p>This update introduces a new premium module called \\\"Elements\\\". Learn more <a href=\\\"https:\\/\\/generatepress.com\\/gp-premium-1-7\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">here<\\/a>.<\\/p>\\n<ul>\\n<li>Blog: Prevent masonry container jump on load<\\/li>\\n<li>Blog: Change \\u201cFull\\u201d label to \\u201cFull Content\\u201d<\\/li>\\n<li>New: Elements module<\\/li>\\n<li>Elements: Header element (replaces the Page Header module)<\\/li>\\n<li>Elements: Hook element (replaces the Hooks module)<\\/li>\\n<li>Elements: Layout element<\\/li>\\n<li>Hooks: Replaced by Elements module<\\/li>\\n<li>Hooks: Move link to legacy hooks inside Elements area<\\/li>\\n<li>Import\\/Export: Re-write code<\\/li>\\n<li>Import\\/Export: Import activated modules<\\/li>\\n<li>Menu Plus: Fix slideout close button alignment\\/color issues<\\/li>\\n<li>Menu Plus: Fix slideout issue with relative main navigation CSS<\\/li>\\n<li>Menu Plus: Fix ul display inside slideout navigation widget<\\/li>\\n<li>Menu Plus: Change Slideout Navigation theme location label to Slideout Menu<\\/li>\\n<li>Menu Plus: Close slideout navigation when a link within it is clicked<\\/li>\\n<li>Menu Plus: Show slideout navigation theme location option after Primary<\\/li>\\n<li>Menu Plus: Improve a11y of slideout navigation<\\/li>\\n<li>Menu Plus: Add\\u00a0.site-wrapper\\u00a0class compatibility to sticky nav<\\/li>\\n<li>Menu Plus: Prepare offside.js for future button dropdown menu toggle<\\/li>\\n<li>Menu Plus: Add\\u00a0.slideout-exit\\u00a0class to close slideout<\\/li>\\n<li>Page Header: Replaced by Elements module<\\/li>\\n<li>Page Header: Move link to legacy Page Headers inside Elements area<\\/li>\\n<li>Page Header: Fix hentry Google Search Console errors<\\/li>\\n<li>Page Header: Fix clearing element issue<\\/li>\\n<li>Page Header: WPML fix in global locations<\\/li>\\n<li>Page Header: Prevent PHP notices within Elementor Library area<\\/li>\\n<li>Page Header: Fix retina logo issue (in new Elements module only)<\\/li>\\n<li>Page Header: Show original logo in sticky navigation (in new Elements module only)<\\/li>\\n<li>Page Header: Add mobile header logo option (in new Elements module only)<\\/li>\\n<li>Secondary Nav: Show theme location option after Primary<\\/li>\\n<li>Sections: Allow Sections when Gutenberg is activated<\\/li>\\n<li>Sections: Hide Gutenberg editor when Sections enabled<\\/li>\\n<li>Sections: Fix text domain issues<\\/li>\\n<li>Sections: Use regular checkbox for use sections<\\/li>\\n<li>Spacing: Add future support for sub-menu width option<\\/li>\\n<li>Sites: Fix .complete class conflicts<\\/li>\\n<li>Sites: Add GENERATE_DISABLE_SITE_LIBRARY constant<\\/li>\\n<li>Sites: Remove verified provider debug notice<\\/li>\\n<li>WooCommerce: Add shopping bag and shopping basket icon options to cart menu item<\\/li>\\n<li>WooCommerce: Fix WC error with non-product post types<\\/li>\\n<li>WooCommerce: Fix too many WC star issue<\\/li>\\n<li>WooCommerce: Add CSS for cart menu item in secondary nav<\\/li>\\n<li>WooCommerce: Add WC menu item location filter to mobile cart<\\/li>\\n<li>WooCommerce: Fix issue with disabling sale badge when set to overlay<\\/li>\\n<li>WooCommerce: Add option to disable\\/enable sale badge on single product pages<\\/li>\\n<li>WooCommerce: Fix my account icon on mobile<\\/li>\\n<li>General: Fix smooth scroll issues on mobile<\\/li>\\n<li>General: Improve overall smooth scroll functionality<\\/li>\\n<li>General: Add generate_smooth_scroll_elements filter<\\/li>\\n<li>General: Move GPP icons from Font Awesome to custom icons<\\/li>\\n<li>A11y: Add context to all \\u201cContained\\u201d strings<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/28\\/2018) - 1.6.2<\\/strong><\\/p>\\n<ul>\\n<li>Sites: Prevent PHP notice when Sites can\'t be reached<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/28\\/2018) - 1.6.1<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix infinite scroll masonry issues in Firefox<\\/li>\\n<li>General: Improve smooth scroll script<\\/li>\\n<li>Import\\/Export: Show modules to export if defined in wp-config.php<\\/li>\\n<li>Sites: Prevent PHP warnings if no Sites are found<\\/li>\\n<li>Sites: Add generate_disable_site_library filter to disable Site Library<\\/li>\\n<li>Sites: Improve page builder filter display<\\/li>\\n<li>Sites: Prevent duplicate site display after details button in preview clicked<\\/li>\\n<li>WooCommerce: Add missing icons if Font Awesome is turned off<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/22\\/2018) - 1.6<\\/strong><\\/p>\\n<ul>\\n<li>New: Sites module<\\/li>\\n<li>Translations: Merge all translations into gp-premium text domain<\\/li>\\n<li>General: Add smooth scroll option<\\/li>\\n<li>General: Move batch processing files into library<\\/li>\\n<li>General: Add GPP icon set<\\/li>\\n<li>General: WPCS and PHPCS improvements<\\/li>\\n<li>Blog: Fix PHP 7.2 warning<\\/li>\\n<li>Blog: Fix Safari infinite scroll issues with srcset<\\/li>\\n<li>Blog: Refresh masonry on infinite scroll append<\\/li>\\n<li>Blog: Remove infinite scroll on 404 and no results pages<\\/li>\\n<li>Blog: Fix Yoast SEO breaking columns with certain settings<\\/li>\\n<li>Blog: Re-layout masonry on load<\\/li>\\n<li>Colors: Add slideout navigation color options<\\/li>\\n<li>Colors: Merge navigation + sub-navigation options into one section<\\/li>\\n<li>Import\\/Export: One click export and import<\\/li>\\n<li>Menu Plus: Re-build slideout navigation to use vanilla JS<\\/li>\\n<li>Menu Plus: Add slideout navigation widget area<\\/li>\\n<li>Menu Plus: Add close icon to slideout navigation<\\/li>\\n<li>Menu Plus: Set sticky nav ID on refresh if stuck<\\/li>\\n<li>Menu Plus: Allow WPML to modify Page Header select metabox<\\/li>\\n<li>Menu Plus: Re-build mobile header using flexbox<\\/li>\\n<li>Menu Plus: Use CSS for slideout navigation icon<\\/li>\\n<li>Menu Plus: Fix sticky navigation slide down in Safari<\\/li>\\n<li>Menu Plus: Add workaround for iOS sticky nav search issue<\\/li>\\n<li>Page Header: Improve Page Header metabox UI on smaller screens<\\/li>\\n<li>Page Header: Use author display name in template tag<\\/li>\\n<li>Page Header: Add generate_page_header_id filter<\\/li>\\n<li>Page Header: Fix vertical center issues in IE11<\\/li>\\n<li>Page Header: Remove flexibility.js for IE8 support<\\/li>\\n<li>Page Header: Fix GiveWP compatibility<\\/li>\\n<li>Secondary Navigation: Re-build CSS<\\/li>\\n<li>Sections: Disable Gutenberg if Sections are activated<\\/li>\\n<li>Sections: Add generate_sections_gutenberg_compatible filter<\\/li>\\n<li>Spacing: Fix one container widget padding preview in Customizer<\\/li>\\n<li>Typography: Add Slideout Navigation typography options<\\/li>\\n<li>WooCommerce: Clear up-sells when directly after entry content<\\/li>\\n<li>WooCommerce: Fix placeholder text cut off in Firefox<\\/li>\\n<li>WooCommerce: Use GPP icon set for cart menu item<\\/li>\\n<li>WooCommerce: Load .js in the footer<\\/li>\\n<li>Update Background Process library<\\/li>\\n<li>Clean up code license key activation code<\\/li>\\n<li>Remove verify.php<\\/li>\\n<li>Prevent PHP notice when saving empty license<\\/li>\\n<li>Add beta testing checkbox to license key area<\\/li>\\n<\\/ul>\\n<p><strong>(12\\/4\\/2017) - 1.5.6<\\/strong><\\/p>\\n<ul>\\n<li>Backgrounds: Make position control description translatable<\\/li>\\n<li>Blog: Fix disabled page featured images if post featured images are disabled<\\/li>\\n<li>Blog: Let WP handle featured image alt attributes<\\/li>\\n<li>Colors: Fix text domain<\\/li>\\n<li>Colors: Improve inconsistent live preview behavior<\\/li>\\n<li>Menu Plus: Prep desktop only slideout icon for GP 2.0<\\/li>\\n<li>Page Header: Allow unfiltered HTML in content if user is allowed<\\/li>\\n<li>Page Header: Only load CSS file if content is added<\\/li>\\n<li>Typography: Fix h5 font size not appearing in GP 2.0<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/22\\/2017) - 1.5.5<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix broken images while using Infinite Scroll in Safari<\\/li>\\n<li>Typography: Fix first variant not appearing when you select a font<\\/li>\\n<li>Typography: Fix select issues when plugins load old versions of the select2 library<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/18\\/2017) - 1.5.4<\\/strong><\\/p>\\n<ul>\\n<li>Sections: Fix Visual\\/Text tab in WP 4.9<\\/li>\\n<li>Sections: Fix Content\\/Settings tab in WP 4.9<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/14\\/2017) - 1.5.3<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix masonry filter not working on custom post type archives<\\/li>\\n<li>Blog: Fix resized featured images when page header resizer is enabled<\\/li>\\n<li>Blog: Fix broken Customizer toggles in Safari<\\/li>\\n<li>Page Header: Fix PHP notice when saving posts<\\/li>\\n<li>Fix\\/add various gettext values<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/10\\/2017) - 1.5.2<\\/strong><\\/p>\\n<ul>\\n<li>Backgrounds: Fix issue with saving background image options<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/9\\/2017) - 1.5.1<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Make infinite scroll container selector more specific<\\/li>\\n<li>Page Header: Fix background video when container is contained<\\/li>\\n<li>Page Header: Remove featured image on attachment pages<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/8\\/2017) - 1.5<\\/strong><\\/p>\\n<ul>\\n<li>Backgrounds: Rebuild Customizer control<\\/li>\\n<li>Blog: Move Blog panel into the Layout panel<\\/li>\\n<li>Blog: Migrate options from select dropdowns to checkboxes where applicable<\\/li>\\n<li>Blog: Merge masonry + column options into one area<\\/li>\\n<li>Blog: Add new post meta visibility options for single posts<\\/li>\\n<li>Blog: Replace old image resizer (aq_resize) with Image Processing Queue (reload your site once or twice to build new images)<\\/li>\\n<li>Blog: Add single post featured image options<\\/li>\\n<li>Blog: Add page featured image options<\\/li>\\n<li>Blog: Remove masonry meta box<\\/li>\\n<li>Blog: Add option to remove padding around centered featured images<\\/li>\\n<li>Blog: Add option to turn read more link into button<\\/li>\\n<li>Blog: Add option to turn on infinite scroll regardless of layout<\\/li>\\n<li>Blog: Use infinite scroll with or without a load more button<\\/li>\\n<li>Blog: Make read more links better for accessibility<\\/li>\\n<li>Blog: Migrate single post page header position option to single featured image location option<\\/li>\\n<li>Blog: Remove ellipses if excerpt is set to 0<\\/li>\\n<li>Blog: Change style.css handle to include generate prefix<\\/li>\\n<li>Blog: Remove unnecessary IE8 support<\\/li>\\n<li>Blog: Add alt attribute to featured images<\\/li>\\n<li>Blog: Fix pagination spacing when One Container is set<\\/li>\\n<li>Blog: Fix column\\/masonry spacing at 768px<\\/li>\\n<li>Colors: Add select input live preview settings<\\/li>\\n<li>Colors: Fix button labels<\\/li>\\n<li>Copyright: Move Copyright section into Layout panel<\\/li>\\n<li>Menu Plus: Fix mobile menu logo bug when navigation is set to float right<\\/li>\\n<li>Menu Plus: Fix no transition sticky navigation bug while on mobile<\\/li>\\n<li>Page Header: Replace old image resizer (aq_resize) with Image Processing Queue (reload your site once or twice to build new images)<\\/li>\\n<li>Page Header: Don\'t use global page header locations if not published<\\/li>\\n<li>Page Header: Sanitize page header content when saved to database<\\/li>\\n<li>Page Header: Make sure Elementor sections are accessible when page header is merged<\\/li>\\n<li>Page Header: Prepare transparent color picker for WP 4.9 changes<\\/li>\\n<li>Page Header: Fix background video in Safari 11<\\/li>\\n<li>Page Header: Add global locations for taxonomies<\\/li>\\n<li>Page Header: Add {{custom_field.description}} template tag to taxonomies (categories etc..)<\\/li>\\n<li>Page Header: Add ID to page header element<\\/li>\\n<li>Page Header: Fix individual taxonomy page header control not appearing on Toolset created taxonomies<\\/li>\\n<li>Page Header: Ensure jQuery Vide (video background) script only loads when needed<\\/li>\\n<li>Page Header: Fix custom images not displaying<\\/li>\\n<li>Page Header: Fix image link option not working<\\/li>\\n<li>Typography: Lay groundwork for H6 options<\\/li>\\n<li>Typography: Space out heading typography options<\\/li>\\n<li>Typography: Add System Stack option<\\/li>\\n<li>Typography: Fix Google Font variant control in WP 4.9<\\/li>\\n<li>Sections: Show Envira button<\\/li>\\n<li>Sections: Show Gridable button<\\/li>\\n<li>Sections: Prepare transparent color picker for WP 4.9 changes<\\/li>\\n<li>WooCommerce: Add filter to cart menu item location<\\/li>\\n<li>WooCommerce: Better activation compatibility with multi-site<\\/li>\\n<li>WooCommerce: Use wc_get_cart_url() for menu item<\\/li>\\n<li>German translations updated (Thanks, Daniel!)<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/18\\/2017) - 1.4.3<\\/strong><\\/p>\\n<ul>\\n<li>Page Header: Pass args to post_thumbnail_html filter<\\/li>\\n<li>Page Header: Allow custom field template tags on pages<\\/li>\\n<li>Page Header: Re-add generate_page_header_video_loop filter<\\/li>\\n<li>Page Header: Add generate_page_header_video_muted filter<\\/li>\\n<li>Page Header: Remove taxonomy title if page header has title<\\/li>\\n<li>WooCommerce: Improve disabled WC button styling<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/11\\/2017) - 1.4.2<\\/strong><\\/p>\\n<ul>\\n<li>Page Header: Improve inner container<\\/li>\\n<li>Page Header: Allow contained page header even when position:absolute is set<\\/li>\\n<li>Page Header: Apply page header text color to headings in page header<\\/li>\\n<li>WooCommerce: Fix mobile columns issue<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/9\\/2017) - 1.4.1<\\/strong><\\/p>\\n<ul>\\n<li>Page Header: Fix error in Customizer when using PHP version &lt; 5.5<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/9\\/2017) - 1.4<\\/strong><\\/p>\\n<ul>\\n<li>Colors: Add back to top button color options<\\/li>\\n<li>Colors: Add h4-h5 color options<\\/li>\\n<li>Colors: Move button color options into own Buttons section<\\/li>\\n<li>Hooks: Show PHP execution message to admins only<\\/li>\\n<li>Menu Plus: Improve disabling of native mobile menu when slide-out is set<\\/li>\\n<li>Menu Plus: Fix sticky mobile menu when navigation is in sidebar<\\/li>\\n<li>Menu Plus: Fix invisible navigation when slide sticky is shown\\/hidden quickly<\\/li>\\n<li>Page Header: Complete code re-write<\\/li>\\n<li>Page Header: Turn Page Headers into a custom post type (CPT)<\\/li>\\n<li>Page Header: Can be applied per page, or globally (pages, posts, categories, CPTs etc..)<\\/li>\\n<li>Page Header: Template tags can be used in Page Header content (page title, author, date)<\\/li>\\n<li>Page Header: Turn bg color options in RGBA picker<\\/li>\\n<li>Page Header: New use bg color as image overlay option<\\/li>\\n<li>Page Header: Re-write parallax feature<\\/li>\\n<li>Page Header: Migrate Blog Page Header in Customizer into a CPT post on update<\\/li>\\n<li>Page Header: Add \\\"Inner Container\\\" width option.<\\/li>\\n<li>Page Header: Add menu background color (instead of forcing transparent)<\\/li>\\n<li>Page Header: Show content options all the time<\\/li>\\n<li>Page Header: Force full width page header if merge is set<\\/li>\\n<li>Page Header: Use set default color palettes in color pickers<\\/li>\\n<li>Page Header: New left\\/right padding option<\\/li>\\n<li>Sections: Make background color rgba color picker<\\/li>\\n<li>Sections: Add background color overlay options<\\/li>\\n<li>Sections: Use set default color palettes in color pickers<\\/li>\\n<li>Sections: Fix dropdown z-index bug introduced in WP 4.8.1<\\/li>\\n<li>Typography: Add H1-H3 line-height options<\\/li>\\n<li>Typography: Add H4-H5 typography options<\\/li>\\n<li>Typography: Add footer\\/copyright area typography options<\\/li>\\n<li>Typography: Add button typography options<\\/li>\\n<li>Typography: Rename Content Customizer section to Headings<\\/li>\\n<li>Typography: Add widget title separating space option<\\/li>\\n<li>Typography: Make fonts in Customizer search-able<\\/li>\\n<li>Typography: Allow Google Font variants to be added\\/removed<\\/li>\\n<li>WooCommerce: Fix columns issue on some pages<\\/li>\\n<li>WooCommerce: Fix mobile columns when using shortcode<\\/li>\\n<li>WooCommerce: Fix extra spacing in empty cart menu item<\\/li>\\n<li>WooCommerce: Show Cart text if no icon<\\/li>\\n<li>WooCommerce: Make cart menu item filterable<\\/li>\\n<li>WooCommerce: Fix sales badge height in IE11<\\/li>\\n<\\/ul>\\n<p><strong>(6\\/19\\/2017) - 1.3.1<\\/strong><\\/p>\\n<ul>\\n<li>Hooks: Add notice to disable PHP execution if DISALLOW_FILE_EDIT is defined<\\/li>\\n<li>Menu Plus: Fix RTL spacing in slide-out menu<\\/li>\\n<li>Menu Plus: Fix bug where sticky nav was interfering with mobile header<\\/li>\\n<li>Menu Plus: Merge all sticky nav transitions into one script<\\/li>\\n<li>Menu Plus: Re-write fade and slide sticky navigation transitions<\\/li>\\n<li>Menu Plus: Add new option to hide sticky navigation while scrolling down<\\/li>\\n<li>WooCommerce: Add padding to terms on checkout<\\/li>\\n<li>WooCommerce: Make shop page options work when shop is set to category display<\\/li>\\n<li>WooCommerce: Style mark element<\\/li>\\n<li>WooCommerce: Remove border\\/padding from checkout fields<\\/li>\\n<li>WooCommerce: Remove color from my account arrows<\\/li>\\n<li>WooCommerce: Adjust ship to address padding<\\/li>\\n<li>WooCommerce: Fix ul elements when WC image is floating<\\/li>\\n<li>WooCommerce: Fix pagination clearing issue<\\/li>\\n<li>WooCommerce: Add pt_BR translation<\\/li>\\n<li>WooCommerce: Fix spacing issue with menu item cart icon and certain fonts<\\/li>\\n<li>Fix double forward slashes in some script calls inside Customizer<\\/li>\\n<li>Add WPML config file<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/17\\/2017) -\\u00a01.3<\\/strong><\\/p>\\n<ul>\\n<li>Backgrounds: Fix big with 100% auto sizing option<\\/li>\\n<li>Colors: Add WooCommerce add-on colors<\\/li>\\n<li>Import\\/Export: Add WooCommerce add-on<\\/li>\\n<li>Menu Plus: Improve Navigation Logo sizing<\\/li>\\n<li>Menu Plus: Re-write no transition sticky navigation<\\/li>\\n<li>Secondary Nav: Add padding to sides of top bar when merged<\\/li>\\n<li>Secondary Nav: Only load resources if the Secondary theme location is set<\\/li>\\n<li>Sections: Fix mix up of left\\/right content padding<\\/li>\\n<li>Spacing: New mobile menu item width\\/height options<\\/li>\\n<li>Spacing: New sticky menu item height option<\\/li>\\n<li>Spacing: New slide-out menu item height option<\\/li>\\n<li>Typography: New mobile menu item font size option<\\/li>\\n<li>WooCommerce: Introducing new WooCommerce add-on<\\/li>\\n<li>Move all Customizer controls and helper functions into globally accessible library<\\/li>\\n<li>Rebuilt range slider control to include responsive icons which display responsive controls<\\/li>\\n<li>Rebuilt typography control reducing number of controls from 50 to 10 (performance)<\\/li>\\n<li>Updated the automatic updater function<\\/li>\\n<li>Add filter to enable beta updates: generate_premium_beta_tester<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/15\\/2017) - 1.2.96<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix option sanitizing for read more and masonry loading options<\\/li>\\n<li>Copyright: Fix option sanitizing for Customizer textarea<\\/li>\\n<li>Disable Elements: Fix PHP notice when saving post<\\/li>\\n<li>Menu Plus: Fix option sanitizing for mobile menu label option<\\/li>\\n<li>Page Header: Fix PHP notice when saving post<\\/li>\\n<li>Secondary Nav: Fix option sanitizing for mobile menu label option<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/14\\/2017) -\\u00a01.2.95<\\/strong><\\/p>\\n<ul>\\n<li>Add notice if GeneratePress theme isn\'t activated<\\/li>\\n<li>Add notice if GeneratePress theme update is available<\\/li>\\n<li>General code cleanup and optimization<\\/li>\\n<li>Backgrounds: Use new CSS class to write dynamic CSS<\\/li>\\n<li>Backgrounds: Deprecate Generate_Backgrounds_Customize_Misc_Control<\\/li>\\n<li>Backgrounds: Add options to the new top bar widget area<\\/li>\\n<li>Blog: Add generate_excerpt_more_output filter to read more link<\\/li>\\n<li>Blog: Add generate_content_more_link_output filter to read more link when more tag is added<\\/li>\\n<li>Blog: Remove ellipses from Read more link default<\\/li>\\n<li>Blog: Use the_title_attribute() where necessary<\\/li>\\n<li>Blog: Add generate_excerpt_length filter<\\/li>\\n<li>Colors: Add options for new top bar widget area<\\/li>\\n<li>Copyright: General code clean up<\\/li>\\n<li>Disable Elements: Add new Top Bar widget area to disable options<\\/li>\\n<li>Disable Elements: Change Post Image label to Featured Image<\\/li>\\n<li>Disable Elements: Completely remove header HTML if set to disable<\\/li>\\n<li>Disable Elements: Completely remove navigation HTML if set to disable<\\/li>\\n<li>Disable Elements: Completely remove footer HTML if set to disable<\\/li>\\n<li>Disable Elements: Add generate_metabox_capability filter to meta box<\\/li>\\n<li>Hooks: Update jQuery cookie library<\\/li>\\n<li>Hooks: Add new GENERATE_HOOKS_DISALLOW_PHP constant to allow users to disable PHP execution<\\/li>\\n<li>Import Export: Verify correct option names<\\/li>\\n<li>Menu Plus: Change Navigation Logo Position label to Navigation Logo Placement<\\/li>\\n<li>Menu Plus: Make sure sticky.js only enqueues if absolutely necessary<\\/li>\\n<li>Menu Plus: Move Sticky Navigation options into their own section<\\/li>\\n<li>Menu Plus: Move Slide-out Navigation options into their own section<\\/li>\\n<li>Menu Plus: Fix slight icon width change when toggling slide-out navigation<\\/li>\\n<li>Menu Plus: Close slide-out menu on item click<\\/li>\\n<li>Page Header: Fix top margin when full width header is below the header<\\/li>\\n<li>Page Header: Use the_title_attribute() where necessary<\\/li>\\n<li>Page Header: Change \\\"Position\\\" labels to \\\"Location\\\"<\\/li>\\n<li>Page Header: Add new generate_page_header_metabox_capability filter to meta box<\\/li>\\n<li>Page Header: Prevent undefined index notices<\\/li>\\n<li>Secondary Nav: Fix sub-navigation background, text and image variables<\\/li>\\n<li>Secondary Nav: Add unit to value if it exists allowing 0px values<\\/li>\\n<li>Secondary Nav: Move background image options into the Backgrounds add-on<\\/li>\\n<li>Secondary Nav: Move spacing options into the Spacing add-on<\\/li>\\n<li>Secondary Nav: Move typography options into the Typography add-on<\\/li>\\n<li>Secondary Nav: Move color options into the Colors add-on<\\/li>\\n<li>Secondary Nav: Add option to merge with new top bar widget area<\\/li>\\n<li>Secondary Nav: Fix dropdown menu arrow spacing in live preview<\\/li>\\n<li>Secondary Nav: Use custom color palettes<\\/li>\\n<li>Sections: Improve CSS output<\\/li>\\n<li>Sections: Remove sections-no-sidebars class if Sections aren\'t activated<\\/li>\\n<li>Spacing: Improve mobile\\/non-mobile live previews in Customizer<\\/li>\\n<li>Spacing: Make sidebar width options range sliders<\\/li>\\n<li>Spacing: Add options for new top bar widget area<\\/li>\\n<li>Spacing: Add ability to link all 4 spacing controls together<\\/li>\\n<li>Spacing: Add all 4 sides to mobile content padding<\\/li>\\n<li>Spacing: Fix Customizer experience when switching between one container and separate containers<\\/li>\\n<li>Typography: Improve mobile\\/non-mobile live previews in Customizer<\\/li>\\n<li>Typography: Add options for new top bar widget area<\\/li>\\n<li>Typography: Update list of available fonts<\\/li>\\n<li>pt_PT translations added - thank you Pedro!<\\/li>\\n<\\/ul>\\n<p><strong>(1\\/25\\/2017) -\\u00a01.2.94<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Fix contained sticky menu with no transition + floating bug<\\/li>\\n<\\/ul>\\n<p><strong>(1\\/24\\/2017) -\\u00a01.2.93<\\/strong><\\/p>\\n<ul>\\n<li>Backgrounds: Fix 100% width option<\\/li>\\n<li>Blog: Change Post Image label to Featured Image<\\/li>\\n<li>Blog: Fully remove featured image if it\'s set to hide<\\/li>\\n<li>Colors: Add transparency slider to all background elements<\\/li>\\n<li>Colors: Remove defaults and dynamic CSS functions - the GP theme handles this<\\/li>\\n<li>Colors: Add new generate_default_color_palettes filter to set up default color palettes<\\/li>\\n<li>Copyright: Use new copyright filter if possible<\\/li>\\n<li>Disabe Elements: Hide mobile header if navigation is disabled<\\/li>\\n<li>Menu Plus: Remove classie.js<\\/li>\\n<li>Menu Plus: Add .navigation-stick class to all sticky menu transitions<\\/li>\\n<li>Menu Plus: Prevent slide-out navigation jump on desktop<\\/li>\\n<li>Menu Plus: Change Sticky Effect label to Sticky Transition<\\/li>\\n<li>Menu Plus: Clean up dynamic CSS<\\/li>\\n<li>Menu Plus: Add .navigation-logo class to the navigation logo<\\/li>\\n<li>Menu Plus: Rebuild and simplify navigation logo CSS<\\/li>\\n<li>Menu Plus: Add live preview to navigation logo height<\\/li>\\n<li>Menu Plus: Add new generate_navigation_logo to the Navigation Logo URL<\\/li>\\n<li>Menu Plus: Fix mixing up of slide-out and search icon when sticky and floating left\\/right<\\/li>\\n<li>Page Header: Add parallax speed filter - generate_page_header_parallax_speed<\\/li>\\n<li>Page Header: Make sure wp.media javascript object exist to avoid potential JS errors<\\/li>\\n<li>Page Header: Make parallax work when page header is set to contained width<\\/li>\\n<li>Page Header: Add generate_metabox_capability to Page Header meta box<\\/li>\\n<li>Page Header: Add new option to overwrite Navigation Logo per page<\\/li>\\n<li>Page Header: Fix full screen page header height when content is longer than the screen<\\/li>\\n<li>Secondary Nav: Change Navigation Position to Navigation Location<\\/li>\\n<li>Secondary Nav: Add defaults to the style.css and only add dynamic CSS if needed<\\/li>\\n<li>Secondary Nav: Improve mobile menu CSS<\\/li>\\n<li>Sections: Add new Section ID field<\\/li>\\n<li>Spacing: Fix instant preview for masonry and columns<\\/li>\\n<li>Spacing: Add size slider to the separator options<\\/li>\\n<li>Spacing: Add mobile content padding option<\\/li>\\n<li>Spacing: Improve live previewing performance in the Customizer<\\/li>\\n<li>Spacing: Remove defaults and dynamic CSS functions - the GP theme handles this<\\/li>\\n<li>Spacing: Set left and right footer widget area padding if it\'s set to 0<\\/li>\\n<li>Spacing: Clean up sidebar width code<\\/li>\\n<li>Spacing: Change range slider style to fit core WP style<\\/li>\\n<li>Typography: Move mobile font size options into their respective sections<\\/li>\\n<li>Typography: Remove defaults and dynamic CSS functions - the GP theme handles this<\\/li>\\n<li>Typography: Change generate_display_google_fonts() function to generate_enqueue_google_fonts()<\\/li>\\n<li>Typography: Change range slider style to fit core WP style<\\/li>\\n<li>Change license key field from text to password<\\/li>\\n<li>Czech translation updated<\\/li>\\n<li>German translation updated<\\/li>\\n<li>Brazilian translation added<\\/li>\\n<li>Italian translated updated<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/29\\/2016) -\\u00a01.2.92<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix category title and load more alignment while using masonry<\\/li>\\n<li>Blog: Fix masonry spacing on mobile<\\/li>\\n<li>Blog: Simplify masonry spacing<\\/li>\\n<li>Blog: Simplify columns spacing<\\/li>\\n<li>Menu Plus: Fix alignment jump when browser is zoomed in and resized down to 768px<\\/li>\\n<li>Menu Plus: Add generate_logo_title filter to sticky logo and mobile header logo<\\/li>\\n<li>Menu Plus: Add spacing to the menu logo when the inner navigation is set to full width<\\/li>\\n<li>Menu Plus: Fix navigation search issue with no transition sticky menu<\\/li>\\n<li>Menu Plus: Don\'t float mobile header navigation if no logo is set<\\/li>\\n<li>Typography: Adjust typography name sanitization function name to avoid errors with old GP versions<\\/li>\\n<li>Typography: Remove parameter from generate_display_google_fonts to avoid warning with child theme generators<\\/li>\\n<li>Typography: Add body line height option<\\/li>\\n<li>Typography: Add paragraph margin option<\\/li>\\n<li>Typography: Reduce copyright\\/footer font size default to 14px<\\/li>\\n<li>Typography: Add reset button to all size sliders<\\/li>\\n<li>Secondary Nav: Remove CSS which stops floating navigation at 1024px<\\/li>\\n<li>Secondary Nav: Fix jump when removing navigation in the Customizer<\\/li>\\n<li>Secondary Nav: New option: Inner navigation width<\\/li>\\n<li>Secondary Nav: Add reset button to font size slider<\\/li>\\n<li>Secondary Nav: Allow transitions on menu items<\\/li>\\n<li>Sections: Fix bug where error would happen if the user isn\'t using at least WordPress 4.5<\\/li>\\n<li>Sections: Remove GP theme grid dependency in admin<\\/li>\\n<li>Sections: Allow oembed in section content<\\/li>\\n<li>Sections: Use jQuery.on() instead of delegate()<\\/li>\\n<li>Sections: Remove unnecessary files<\\/li>\\n<li>Spacing: Prevent warning caused by wrong version constant<\\/li>\\n<li>Page Header: New filter: generate_get_blog_page_header - makes it possible to set the blog page header under different conditions<\\/li>\\n<li>Page Header: Improve full height page header functionality on mobile\\/orientation change<\\/li>\\n<li>Page Header: Remove fixed background attachment from parallax background image to help preserve image ratio<\\/li>\\n<li>Add prompt to add license key in Plugins area if it isn\'t activated and updates are available<\\/li>\\n<li>Move all language files into the \\/langs\\/ folder<\\/li>\\n<li>Reduce length of some text domains to avoid updating issue with some servers<\\/li>\\n<li>Chinese translations added - thanks Alfred!<\\/li>\\n<li>Portuguese translation added - thanks Alvaro!<\\/li>\\n<li>Russian translations updated - thanks Alex!<\\/li>\\n<li>German translations updated - thanks Daniel!<\\/li>\\n<\\/ul>\\n<p><strong>(17\\/10\\/2016) -\\u00a01.2.91<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Fix bug where navigation logo wasn\'t displaying when effect is set to None<\\/li>\\n<li>Menu Plus: Fix bug where mobile header javascript was showing up when it shouldn\'t<\\/li>\\n<li>Sections: Add Shortcodes Ultimate compatibility<\\/li>\\n<li>Page Header: Fix Italian translation<\\/li>\\n<li>Page Header: Only show metabox on public post types<\\/li>\\n<li>Page Header: Fully re-design metabox<\\/li>\\n<li>Page Header: Add padding unit option (px or %)<\\/li>\\n<li>Blog: Make excerpt length value update immediately in Customizer<\\/li>\\n<li>Blog: Improve masonry functionality<\\/li>\\n<li>Russian translations updated - massive thanks to Alexey!<\\/li>\\n<\\/ul>\\n<p><strong>(2\\/10\\/2016) - 1.2.90<\\/strong><\\/p>\\n<ul>\\n<li>Prevent direct access to all files<\\/li>\\n<li>All Czech translations updated (thanks Ondrej!)<\\/li>\\n<li>Copyright: Improve Customizer experience<\\/li>\\n<li>Sections: Completely re-designed and re-built Sections<\\/li>\\n<li>Sections: Section content is now saved into your default editor on update\\/save. This prevents theme-lock, meaning your content will still exist even if you remove Sections.<\\/li>\\n<li>Sections: Send to default editor button removed as the before removes the need for it<\\/li>\\n<li>Sections: Add bottom &amp; top padding unit option (px or %)<\\/li>\\n<li>Page Header: Add generate_page_header_video_loop filter to disable looping of the page header video<\\/li>\\n<li>Page Header: Add option to remove the page header from single posts<\\/li>\\n<li>Page Header: Make number only inputs only accepts numbers<\\/li>\\n<li>Page Header: Force page header above the content if merged option is set<\\/li>\\n<li>Page Header: Disable automatic check for background video posters if no image is set<\\/li>\\n<li>Page Header: Use featured image as background image if no page header image is set<\\/li>\\n<li>Spacing: Remove duplicate menu item height CSS<\\/li>\\n<li>Spacing: Make inputs number only<\\/li>\\n<li>Spacing: All options are now instant preview<\\/li>\\n<li>Blog: Make post image sizes and excerpt length inputs number only<\\/li>\\n<li>Blog: Force full width masonry items on mobile<\\/li>\\n<li>Blog: Show Blog panel even when we\'re not viewing the blog in the Customizer<\\/li>\\n<li>Menu Plus: Reduce space between menu toggle and search icon on mobile with menu logo enabled<\\/li>\\n<li>Menu Plus: Show navigation logo option and navigation logo position option even if sticky navigation isn\'t enabled<\\/li>\\n<li>Menu Plus: Optimize javascript and put it all in files instead of in wp_footer<\\/li>\\n<li>Menu Plus: Allow navigation logo to show in sidebar navigation causing a sidebar logo effect<\\/li>\\n<li>Menu Plus: Float mobile header to the right on RTL installations<\\/li>\\n<li>Typography: Add new filter: generate_typography_variants<\\/li>\\n<li>Typography: Make font size, weight and decoration instant preview<\\/li>\\n<li>Typography: Only show top 200 popular Google Fonts in Customizer (increases Customizer performance)<\\/li>\\n<li>Typography: generate_number_of_fonts filter added so you can choose how many fonts to include in the Customizer list<\\/li>\\n<li>Typography: Remove 2 database queries<\\/li>\\n<li>Typography: Add Segoe UI font to default list<\\/li>\\n<li>Typography: Revamp how Google fonts get their category and variants (increase front end performance)<\\/li>\\n<li>Colors: Make all colors instant preview<\\/li>\\n<li>Secondary Navigation: Colors are now instant preview<\\/li>\\n<li>Secondary Navigation: Typography font weight, transform and size are now instant preview<\\/li>\\n<li>Secondary Navigation: Layout options are now instant preview<\\/li>\\n<li>Hooks: Disable spell check in hook textareas<\\/li>\\n<li>Hooks: Fix floating box issue on RTL installations<\\/li>\\n<li>Backgrounds: Use default WordPress image uploader customizer control<\\/li>\\n<li>Customizer: All Customizer controls are now rendered in javascript\\/json - big +1 for performance<\\/li>\\n<\\/ul>\\n<p><strong>(7\\/23\\/2016) -\\u00a01.2.89<\\/strong><\\/p>\\n<ul>\\n<li>Fix translations<\\/li>\\n<li>GP Hooks: Add new filter: generate_hooks_capability - change the capability for users who can edit hooks<\\/li>\\n<li>Disable Elements: Remove metabox from attachment post type<\\/li>\\n<li>Page Header: Fix issue where merged header navigation colors weren\'t working<\\/li>\\n<li>Page Header: Remove metabox from the attachment post type<\\/li>\\n<li>Menu Plus: Fix sticky menu not unsticking if it\'s the very top element<\\/li>\\n<\\/ul>\\n<p><strong>(7\\/16\\/2016) -\\u00a01.2.88<\\/strong><\\/p>\\n<ul>\\n<li>GP Premium: Cut down unnecessary folders to prevent update failures on some servers<\\/li>\\n<li>Page Header: Add a new option in Advanced Settings: Place content behind header (sliders etc..)<\\/li>\\n<li>Page Header: Fix header and navigation alignment in vertical centered page header when contained<\\/li>\\n<li>Sections: Rename template file to shorter name<\\/li>\\n<li>Typography: Rename control file to shorter name<\\/li>\\n<li>Copyright: Fix\\/improve live preview of copyright in the Customizer<\\/li>\\n<li>Blog: Show the read more label setting for both excerpt and full content settings<\\/li>\\n<li>Menu Plus: Fix sticky menu stopping at the bottom of the Page Header<\\/li>\\n<li>Menu Plus: Improve sticky menu experience<\\/li>\\n<li>Menu Plus: Float sticky menu logo right when navigation is set to float left<\\/li>\\n<li>Secondary Navigation: Adjust z-index<\\/li>\\n<\\/ul>\\n<p><strong>(7\\/10\\/2016) -\\u00a01.2.87<\\/strong><\\/p>\\n<ul>\\n<li>Increase database sanitization\\/escaping and harden security throughout all add-ons<\\/li>\\n<li>Backgrounds: Place options into sections inside Background Images panel<\\/li>\\n<li>Blog: Add new filter to set the column count: generate_blog_get_column_count<\\/li>\\n<li>Blog: Add title tag to read more link<\\/li>\\n<li>Secondary Navigation: Fix spacing issue with dropdown menu arrow<\\/li>\\n<li>Secondary Navigation: Remove Secondary Navigation panel<\\/li>\\n<li>Secondary Navigation: Move sections into their applicable panels<\\/li>\\n<li>Secondary Navigation: Add RTL language support<\\/li>\\n<li>Spacing: Place options into sections inside Spacing panel<\\/li>\\n<li>Spacing: Add RTL support<\\/li>\\n<li>Copyright: Move copyright textarea into the Customizer<\\/li>\\n<li>Copyright: Swedish translation added - thanks Jamal!<\\/li>\\n<li>Page Header: Fix logo setting to work with new WordPress 4.5 custom_logo feature<\\/li>\\n<li>Page Header: Vastly improved merged header option<\\/li>\\n<li>Page Header: Move Blog Page Header panel into the Blog panel<\\/li>\\n<li>Sections: Fix bug where first paragraph wasn\'t being correct wrapped in &lt;p&gt; tag<\\/li>\\n<li>Menu Plus: Move options into Layout panel<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/29\\/2016) -\\u00a01.2.86<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Allow resizer to upscale images<\\/li>\\n<li>Page Header: Allow resizer to upscale images<\\/li>\\n<li>Sections: Fix issue with images enlarging in Sections<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/24\\/2016) -\\u00a01.2.85<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix cropping when Photon is being used<\\/li>\\n<li>Page Header: Fix cropping when Photon is being used<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/23\\/2016) -\\u00a01.2.84<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix bug where two columns appear briefly at 768px width<\\/li>\\n<li>Blog: Change image resizer to more lightweight option<\\/li>\\n<li>Blog: Fix uneven spacing at the bottom of blog posts in columns<\\/li>\\n<li>Sections: Apply the_content filter once to the whole sections page to avoid multiple sharing icons being added by plugins etc..<\\/li>\\n<li>Page Header: Change image resizer to more lightweight option<\\/li>\\n<li>Page Header: Add apply image sizes button to the Blog Page Header crop options<\\/li>\\n<li>Translations: Czech translations updated - thanks Ondrej!<\\/li>\\n<li>Translations: Polish translations updated - thanks Krzysztof!<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/5\\/2016) - 1.2.83<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix bug where full width post wasn\'t displaying in columns<\\/li>\\n<li>Blog: Add a check for the blog content customizer control in the theme to prevent warning<\\/li>\\n<li>Blog: Add button to apply post image sizes in the Customizer to prevent unnecessary images being created<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/3\\/2016) -\\u00a01.2.82<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Improve masonry width logic<\\/li>\\n<li>Blog: Improve proportional image resizing<\\/li>\\n<li>Blog: Switch to a better image resizer<\\/li>\\n<li>Spacing: Add spacing for dropdown menu toggle and mobile items in the navigation<\\/li>\\n<li>Colors: Fix text-domain for \\\"Colors\\\" panel to allow it to be translated<\\/li>\\n<li>Colors: Add focus style to buttons<\\/li>\\n<li>Sections: Replace the_content filter with Sections specific filter to avoid plugins adding icons and other content into each section<\\/li>\\n<li>Page Header: Add background image as the video placeholder if it can\'t be loaded (mobile devices etc..)<\\/li>\\n<li>Page Header: Switch to a better image resizer<\\/li>\\n<li>Typography: Adjust label size in Typography sections in Customizer for longer translations<\\/li>\\n<li>Polish translations added - thanks, Paul!<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/24\\/2016) -\\u00a01.2.81<\\/strong><\\/p>\\n<ul>\\n<li>Page Header: Fix javascript bug in Safari<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/23\\/2016) -\\u00a01.2.80<\\/strong><\\/p>\\n<ul>\\n<li>Page Header: Fix iOS bug with parallax background image<\\/li>\\n<li>Page Header: Move \\\"Appearance &gt; Blog Page Header\\\" to \\\"Customize &gt; Page Header &gt; Blog\\\"<\\/li>\\n<li>Page Header: Adjust proportional resizing<\\/li>\\n<li>Page Header: Add generate_page_header_featured_image filter to force usage of the featured image over the custom field<\\/li>\\n<li>Page Header: Add option to merge site header and page header with a transparent navigation<\\/li>\\n<li>Page Header: Add option to include a video background in your page header<\\/li>\\n<li>Page Header: Add option to replace your logo\\/header on individual pages\\/posts<\\/li>\\n<li>Page Header: Improve metabox saving to prevent empty values in the database<\\/li>\\n<li>Page Header: Minify parallax JS<\\/li>\\n<li>Typography: Add input fields to font sizes to manually adjust them without slider<\\/li>\\n<li>Typography: Adjust separators in Customizer<\\/li>\\n<li>Typography: Add mobile font sizes for the main title, H1 and H2<\\/li>\\n<li>Menu Plus: Adjust navigation width with container width in Customizer<\\/li>\\n<li>Menu Plus: Fix sticky navigation spacer width<\\/li>\\n<li>Menu Plus: Navigation float right aligns sticky menu items to the right<\\/li>\\n<li>Menu Plus: Add new dropdown arrows to slideout menu<\\/li>\\n<li>Menu Plus: New Feature: Mobile Header<\\/li>\\n<li>Menu Plus: Separate options into panels<\\/li>\\n<li>Menu Plus: Close slideout menu with escape key<\\/li>\\n<li>Secondary Nav: Fix separator spacing below secondary navigation in the widget area<\\/li>\\n<li>Secondary Nav: Add support for navigation click dropdown<\\/li>\\n<li>Secondary Nav: Minify CSS and JS<\\/li>\\n<li>Blog: Fix category\\/author page header when columns are set<\\/li>\\n<li>Blog: Remove generate_blog_activate_masonry function and bundle it in with generate_blog_get_masonry function<\\/li>\\n<li>Blog: Turn off masonry if we\'re on WooCommerce search results<\\/li>\\n<li>Blog: Turn off columns if we\'re on WooCommerce search results<\\/li>\\n<li>Blog: Minify CSS and JS<\\/li>\\n<li>Colors: Add focus styles to navigation<\\/li>\\n<li>Backgrounds: Add separators in Customizer<\\/li>\\n<li>Backgrounds: Fix doubling up background images in the content when One Container is set<\\/li>\\n<li>Spacing: Add separators in Customizer<\\/li>\\n<li>Sections: Improve editor handling when visual editor is turned off<\\/li>\\n<li>Sections: Use excerpt metabox on archives\\/blog if Sections is in use in single post<\\/li>\\n<li>Sections: Fix bug where archives\\/blog loses layout if most recent post is using Sections<\\/li>\\n<li>Sections: Minify CSS and JS<\\/li>\\n<li>Disable Elements: Improve metabox saving to prevent empty values in the database<\\/li>\\n<li>Italian translations added for all add-ons - thank you Roberto!<\\/li>\\n<li>German translations updated for all add-ons - thank you Daniel!<\\/li>\\n<\\/ul>\\n<p><strong>(12\\/22\\/2015) - 1.2.79<\\/strong><\\/p>\\n<ul>\\n<li>Spacing: Add function_exists in case GP theme isn\'t activated<\\/li>\\n<\\/ul>\\n<p><strong>(12\\/21\\/2015) - 1.2.78<\\/strong><\\/p>\\n<ul>\\n<li>Backgrounds: Fix bug where navigation background image was showing in sub-navigation as well<\\/li>\\n<li>Backgrounds: Optimize CSS<\\/li>\\n<li>Colors: Optimize CSS<\\/li>\\n<li>Secondary Nav: Remove unnecessary CSS from &lt;head&gt;<\\/li>\\n<li>Spacing: Optimize CSS<\\/li>\\n<li>Typography: Optimize CSS<\\/li>\\n<li>Menu Plus: Fix slideout menu glitch when menu item has # as URL<\\/li>\\n<li>Menu Plus: Improve sticky functionality and display<\\/li>\\n<li>Menu Plus: Update sticky menu width when navigation is container and layout is updated<\\/li>\\n<li>Menu Plus: Improve slideout menu transition<\\/li>\\n<li>Blog: Add filter to add post types for the masonry width metabox: generate_blog_masonry_metabox<\\/li>\\n<li>Blog: Add option to set posts as equal height columns<\\/li>\\n<li>Blog: Update masonry when layout is changed in Customizer<\\/li>\\n<li>Blog: Add safeguard in case people type Auto in post image sizes<\\/li>\\n<li>Sections: Add support for password protected pages and Sections<\\/li>\\n<li>Spacing: Remove widget padding if one container is set<\\/li>\\n<li>Spacing: Right and left content padding now affects content area when One Container is set<\\/li>\\n<li>Page Header: Fix proportional resizing<\\/li>\\n<li>Updater functionality improved<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/29\\/2015) - 1.2.77<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix warning when post image width is set without a height<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/27\\/2015) - 1.2.76<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Don\'t display sticky menu logo if sticky menu is disabled<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/27\\/2015) - 1.2.75<\\/strong><\\/p>\\n<ul>\\n<li>Czech translations added to all add-ons - thanks Ondrej!<\\/li>\\n<li>Slovak translation added to GP Premium - thanks Jan!<\\/li>\\n<li>Move from email activation to license key activation<\\/li>\\n<li>Menu Plus: Add ability to add menu item with slider-exit class to exit the slideout menu<\\/li>\\n<li>Menu Plus: Add generate_after_slideout_navigation hook<\\/li>\\n<li>Menu Plus: Adjust mobile search item selector to include ability for more items to be added<\\/li>\\n<li>Menu Plus: Fix slideout menu on Windows phones<\\/li>\\n<li>Menu Plus: Reduce amount of CSS shown in the &lt;head&gt; section<\\/li>\\n<li>Blog: Use array for image resizer instead of string<\\/li>\\n<li>Blog: Show date and author on single post even if content title is hidden<\\/li>\\n<li>Hooks: Move before header hook content above navigation when set to above header<\\/li>\\n<li>Colors: Adjust mobile search item selector to include ability for more items to be added<\\/li>\\n<li>Colors: Reduce amount of CSS shown in the &lt;head&gt; section<\\/li>\\n<li>Spacing: Adjust mobile search item selector to include ability for more items to be added<\\/li>\\n<li>Spacing: Reduce amount of CSS shown in the &lt;head&gt; section<\\/li>\\n<li>Sections: Allow sidebars to display on with Sections if generate_sections_sidebars filter is set to true<\\/li>\\n<li>Sections: Make adjustment to ensure compatibility with PHP7<\\/li>\\n<li>Disable Elements: Disabling the site navigation also disbale the sticky navigation if Menu Plus is activated<\\/li>\\n<li>Typography: Reduce amount of CSS shown in the &lt;head&gt; section<\\/li>\\n<li>Backgrounds: Reduce amount of CSS shown in the &lt;head&gt; section<\\/li>\\n<li>Page Header: Reduce CSS shown in &lt;head&gt; section if there\'s no page header content<\\/li>\\n<li>Secondary Nav: Reduce amount of CSS shown in the &lt;head&gt; section<\\/li>\\n<\\/ul>\\n<p><strong>(10\\/30\\/2015) - 1.2.74<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Fix mobile menu overlap with search icon when sticky effect set to \\\"none\\\"<\\/li>\\n<\\/ul>\\n<p><strong>(10\\/29\\/2015) - 1.2.73<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Allow post image cropping to have proportional width based on height<\\/li>\\n<li>Blog: Hiding the date, author, categories, tags and comments link fully removes them (requires GP 1.3.18)<\\/li>\\n<li>Typography: Add font size controller for footer\\/copyright<\\/li>\\n<li>Page Header: Fix full screen issue when refreshing half way down the screen<\\/li>\\n<li>Colors: Fix missing placeholder text in Edge browser<\\/li>\\n<li>Colors: Adjust mobile search item selector<\\/li>\\n<li>Menu Plus: Change \\\"hamburger\\\" icon to close icon on slideout menu open<\\/li>\\n<li>Menu Plus: Fix bug where mobile only sticky menu was appear on desktop when set to fade<\\/li>\\n<li>Menu Plus: Fix background image issue when slideout menu is enabled<\\/li>\\n<li>Menu Plus: Add classes to &lt;body&gt; element for site logo in navigation\\/sticky navigation<\\/li>\\n<li>Menu Plus: Add styling for mobile search item<\\/li>\\n<li>Menu Plus: Replace slideout menu script with a more lightweight, efficient one<\\/li>\\n<li>Disable Elements: Disabling the headline\\/title fully removes it from the code (requires GP 1.3.18)<\\/li>\\n<li>Spacing: Add styling for mobile search item<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(10\\/3\\/2015) - 1.2.72<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix masonry on tablet orientation change<\\/li>\\n<li>Blog: Fix masonry on search results page<\\/li>\\n<li>Menu Plus: Fix sticky menu bug when navigation is in sidebar<\\/li>\\n<li>Menu Plus: Remove empty javascript element if slideout menu is disabled<\\/li>\\n<li>Menu Plus: Fix sticky menu bug when mobile menu is toggled<\\/li>\\n<li>Menu Plus: Delay sticky script from initializing until all other scripts are done<\\/li>\\n<li>Page Header: Add microdata to page header image<\\/li>\\n<li>Spacing: Fix mobile search spacing<\\/li>\\n<li>Sections: Add generate_sections_default_padding_top and generate_sections_default_padding_bottom filters for the default padding<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(9\\/16\\/2015) - 1.2.71<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Fix empty alert<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(9\\/14\\/2015) - 1.2.70<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: German translation added (thank you, Daniel!)<\\/li>\\n<li>Disable Elements: Disable post image on single template if set<\\/li>\\n<li>Spacing: Adjust spacing for mobile search<\\/li>\\n<li>Typography: Range slider settings adjusted<\\/li>\\n<li>Sections: Fix Add Media button when in Text editor<\\/li>\\n<li>Menu Plus: Fix conflict with navigation search in mobile menu<\\/li>\\n<li>Page Header: Fix mobile bug on Chrome with full height page headers<\\/li>\\n<li>Menu Plus: Fix Secondary Navigation dropdown issue when slideout menu is enabled<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(8\\/24\\/2015) - 1.2.69<\\/strong><\\/p>\\n<ul>\\n<li>[!] Menu Plus: Sticky Menu Slide was showing up behind content<\\/li>\\n<li>[*] Menu Plus: Remove notices if GP isn\'t activated<\\/li>\\n<li>[*] Page Header: Remove notice if GP isn\'t activated<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(8\\/22\\/2015) - 1.2.68<\\/strong><\\/p>\\n<ul>\\n<li>[!] Blog: Remove masonry load more button if linked directly to last page<\\/li>\\n<li>[!] Sections: Fix issue with sections displaying on IE8<\\/li>\\n<li>[*] Sections: Add new filter to allow sections on any post type you like: generate_sections_post_types<\\/li>\\n<li>[+] Page Header: Add new filter to allow page header link to open in new tab: generate_page_header_target<\\/li>\\n<li>[!] Menu Plus: Fix error when using Jetpack\'s Mobile Theme<\\/li>\\n<li>[*] Menu Plus: Improve fade transition<\\/li>\\n<li>[!] Colors: Fix mobile menu text hover<\\/li>\\n<li>[+] GP Premium: Activate\\/Deactivate multiple add-ons at once<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(8\\/6\\/2015) - 1.2.67<\\/strong><\\/p>\\n<ul>\\n<li>[*] Disable Elements: Disable post image now works without Page Header being activated<\\/li>\\n<li>[!] Menu+: Fix bug where hidden navigation clone was conflicting with secondary navigation<\\/li>\\n<li>[*] Secondary Nav: Mobile menu toggle changed from &lt;h3&gt; to &lt;button&gt;<br \\/>\\n+ If you\'ve used h3.menu-toggle in any custom CSS, you\'ll need to adjust it (.menu-toggle is fine)<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(8\\/2\\/2015) - 1.2.66<\\/strong><\\/p>\\n<ul>\\n<li>[*] Menu+: Smoothen slideout transitions<\\/li>\\n<li>[+] Menu+: Add \\\"generate_menu_slideout_effect\\\" filter<\\/li>\\n<li>[+] Menu+: Add \\\"generate_menu_slideout_position\\\" filter<\\/li>\\n<li>[!] Menu+: Fix alignment issue with float right contained sticky menu<\\/li>\\n<li>[*] Menu+: Show sticky menu on mobile only, desktop only or both<\\/li>\\n<li>[*] Menu+: Various tweaks<\\/li>\\n<li>[+] Blog: Add jump to anchor when using read more tag<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(8\\/1\\/2015) - 1.2.65<\\/strong><\\/p>\\n<ul>\\n<li>[+] Menu Plus: Added to GP Premium<\\/li>\\n<li>[*] Blog: Run image resizer on front-end only<\\/li>\\n<li>[*] Page Header: Run image resizier on front-end only<\\/li>\\n<li>[*] Page Header: Run cmb2 only if it hasn\'t already been initialized<\\/li>\\n<li>[*] Blog: Remove float on floated post images on mobile<\\/li>\\n<li>[*] All: Email\\/add-on activation improved<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(7\\/13\\/2015) - 1.2.64<\\/strong><\\/p>\\n<ul>\\n<li>[*] Blog: If the read more input is empty, don\'t include markup in post<\\/li>\\n<li>[*] Blog: fix masonry horizontal scroll on mobile (no sidebars)<\\/li>\\n<li>[*] Blog: Fix post image (float left or right) margin on mobile<\\/li>\\n<li>[*] Secondary Nav: Adjust mobile breakpoint<\\/li>\\n<li>[!] Secondary Nav: Fix secondary navigation font bug<\\/li>\\n<li>[!] Typography: Fix weird Google Font rendering bug<\\/li>\\n<li>[!] Sections: Fix bug where paragraphs were being stripped<\\/li>\\n<li>[!] Sections: Fix shortcode bug<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(6\\/28\\/2015) - 1.2.63<\\/strong><\\/p>\\n<ul>\\n<li>[+] Typography + Spacing: Italian translations added (thanks, Roberto!!)<\\/li>\\n<li>[+] Allow shortcodes in text widgets<\\/li>\\n<li>[!] Typography: Fix bug where variants weren\'t registering<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(6\\/25\\/2015) - 1.2.62<\\/strong><\\/p>\\n<ul>\\n<li>[+] All add-ons - French translations updated (thanks, Philippe!!)<\\/li>\\n<li>[+] All add-ons - Russian translations added (thanks, Alexey!!)<\\/li>\\n<li>[*] Page Header: Improve fullscreen height and vertical center functionality<\\/li>\\n<li>[*] Secondary Nav: Wrap mobile menu in span<\\/li>\\n<li>[*] Sections: Fix some weird CSS styling in editor<\\/li>\\n<li>[*] Secondary Nav: Updated mobile breakpoint to 767px<\\/li>\\n<li>[+] Sections: Add generate_sections_parallax_speed filter to change the speed of parallax effect<\\/li>\\n<li>[+] Blog: Add new filter: generate_blog_activate_masonry - this checks whether we should activate masonry or not<\\/li>\\n<li>[+] Blog: Add code to allow Google Analtyics to track masonry load more as pageviews<\\/li>\\n<li>[+] Typography: Major update! Values changed to allow future Google Font additions\\/changes - please backup before updating.<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(5\\/20\\/2015) - 1.2.61<\\/strong><\\/p>\\n<ul>\\n<li>[!] Sections: Fix spacing bug while using one container<\\/li>\\n<li>[!] Typography: Fix subset issue<\\/li>\\n<li>[*] Translation files updated<\\/li>\\n<li>[+] Blog: Add class to read more paragraph container<\\/li>\\n<li>[!] Secondary Nav: Fix background image upload controls<\\/li>\\n<li>[*] Blog: Fix broken translation strings<\\/li>\\n<li>[+] Sections: Add ability to use Sections on posts<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(5\\/16\\/2015) - 1.2.6<\\/strong><\\/p>\\n<ul>\\n<li>[*] Page Header: Performance improvements<\\/li>\\n<li>[*] Page Header: GP_IMAGE_RESIZER constant added to give option to disable automatic thumbnail regeneration<\\/li>\\n<li>[x] Page Header: Crop position removed for now<\\/li>\\n<li>[*] French translations updated (thanks, Philippe!!)<\\/li>\\n<li>[!] Copyright: Fix bug where copyright was being removed when email was saved<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(5\\/13\\/2015) - 1.2.5<\\/strong><\\/p>\\n<p>[!] Hooks: Fix bug where Inside Content Container wasn\'t showing up<\\/p>\\n<p>----<\\/p>\\n<p><strong>(5\\/6\\/2015) - 1.2.4<\\/strong><\\/p>\\n<ul>\\n<li>[!] Page Header: Add function_exists() functions to admin-options.php to stop error when standalone and GP Premium are activated.<\\/li>\\n<li>[!] Sections: Fix bug where sidebar padding wasn\'t working with one container set<\\/li>\\n<li>[*] Sections: Improve editor when visual editor disabled<\\/li>\\n<li>[!] Page Header: Fix bug in parallax.js<\\/li>\\n<li>[*] German language updated through all add-ons (thanks, Daniel!!)<\\/li>\\n<li>[*] Blog: Disallow masonry on any post types but the core \\\"post\\\" type<\\/li>\\n<li>[!] Sections: Remove background color on sections pages when one container is set.<\\/li>\\n<li>[!] Page Header: Remove empty space on attachment page<\\/li>\\n<li>[*] Import\\/Export: Delete GP Hooks specific import - no longer needed<\\/li>\\n<li>[+] Hooks: Add option to disable individual hooks<\\/li>\\n<li>[+] Hooks: Move options to one table - reduces queries<\\/li>\\n<li>[+] Typography: Widget content size option added<\\/li>\\n<li>[!] Sections: Fix bug dealing with sidebar layouts<\\/li>\\n<li>[*] Email activation performance increased<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(4\\/14\\/2015) - 1.2.3<\\/strong><\\/p>\\n<ul>\\n<li>[!] Sections: Fix language path<\\/li>\\n<li>[*] All add-ons: Update language files<\\/li>\\n<li>[!] Sections: Remove wp_enqueue_media() call which was breaking featured image<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(4\\/12\\/2015) - 1.2.2<\\/strong><\\/p>\\n<ul>\\n<li>[!] Spacing: Fix bug where sidebar padding wasn\'t working with one container set<\\/li>\\n<li>[!] Sections: Fix error relating to old version of PHP<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(4\\/11\\/2015) - 1.2.1<\\/strong><\\/p>\\n<ul>\\n<li>[!] Sections: Fix bug where HTML was being stripped<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(4\\/9\\/2015) - 1.2<\\/strong><\\/p>\\n<ul>\\n<li>[+] German translations added (thank you Daniel!!)<\\/li>\\n<li>[*] Page Header &amp; Blog: remove bfi_thumb and use WordPress resizer (reduced memory usage)<\\/li>\\n<li>[*] Typography: Group typography options into areas<\\/li>\\n<li>[+] Typography: Comic Sans MS added to font list<\\/li>\\n<li>[*] Colors: French translation updated<\\/li>\\n<li>[*] Spacing: French translation updated<\\/li>\\n<li>[*] Blog: French translation updated<\\/li>\\n<li>[*] Copyright: French translation updated<\\/li>\\n<li>[+] Copyright: Save button added below textarea<\\/li>\\n<li>[+] Typography: French translation added<\\/li>\\n<li>[*] Secondary Nav: Mobile breakpoint removed from mobile.css and added to enqueue function<\\/li>\\n<li>[+] Sections: Introducing Generate Sections<\\/li>\\n<li>[!] Page Header: Fix bug where add paragraphs doesn\'t work on Blog Header<\\/li>\\n<li>[+] Import\\/Export: Ability to import\\/export GP Hooks added<\\/li>\\n<li>[+] Hooks: Ability to import\\/export GP Hooks added<\\/li>\\n<li>[*] Page Header: Disable parallax on mobile<\\/li>\\n<li>[!] Blog: Show next\\/prev links even when everything else is hidden<\\/li>\\n<li>[*] Blog: Masonry improved<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(1\\/28\\/2015) - 1.1<\\/strong><\\/p>\\n<ul>\\n<li>[+] Spacing: French translation added<\\/li>\\n<li>[+] Copyright: French translation added<\\/li>\\n<li>[+] Blog: French translation added<\\/li>\\n<li>[*] Blog: Choosing medium as the masonry block width gives items 50% width.<\\/li>\\n<li>[*] Blog: Masonry re-written to perform better<\\/li>\\n<li>[+] Page Header: New options page added (Appearance &gt; Blog Page Header) - add a page header to your blog<\\/li>\\n<li>[+] Page Header: Better parallax effect added to page header background<\\/li>\\n<li>[!] Page Header: Resizing image turned it to PNG and increased file size<\\/li>\\n<li>[+] Page Header: Added option to enable full screen background image<\\/li>\\n<li>[+] Page Header: Added option to vertically center content<\\/li>\\n<li>[+] Colors: Color options added for H1, H2 and H3 elements<\\/li>\\n<li>[+] Typography: Font fallback set - use generate_fallback_font filter to change it<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(12\\/15\\/2014) - 1.0<\\/strong><\\/p>\\n<ul>\\n<li>[*] Blog: Adjustments made to alignment CSS to work with W3 Total Cache<\\/li>\\n<li>[+] Typography: More fonts added<\\/li>\\n<li>[+] Typography: Filter added to subset<\\/li>\\n<li>[+] Colors: French translation added<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(11\\/17\\/2014) - 0.9<\\/strong><\\/p>\\n<ul>\\n<li>[!] Blog: Applied post image position to images using Page Header addon<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(11\\/17\\/2014) - 0.8<\\/strong><\\/p>\\n<ul>\\n<li>[*] Blog: Hiding post images works again<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(11\\/16\\/2014) - 0.7<\\/strong><\\/p>\\n<ul>\\n<li>[+] Page Header: Option to add background color<\\/li>\\n<li>[*] Page Header: Background image no longer required for other options<\\/li>\\n<li>[*] Page Header: Image resizer now uses BFI Thumb<\\/li>\\n<li>[+] Page Header: Option to move post header below the title<\\/li>\\n<li>[*] Secondary Nav: Mobile breakpoint increased to include tablets<\\/li>\\n<li>[!] Secondary Nav: Fix bug causing Trebuchet MS not to work<\\/li>\\n<li>[!] Colors: Navigation current text color wasn\'t working while navigation floating right<\\/li>\\n<li>[*] Colors: Change color of placeholder text to text color<\\/li>\\n<li>[!] Secondary Nav: Remove secondary navigation element if no menu is set<\\/li>\\n<li>[+] Blog: Add option to hide categories<\\/li>\\n<li>[+] Blog: Choose alignment of post image<\\/li>\\n<li>[+] Blog: Choose size of post image<\\/li>\\n<li>[+] Hooks: Added inside main content container hook<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(10\\/27\\/2014) - 0.6<\\/strong><\\/p>\\n<ul>\\n<li>[!] Typography: Fix bug with non Google fonts calling to Google<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(10\\/20\\/2014) - 0.5<\\/strong><\\/p>\\n<ul>\\n<li>[!] Disable Elements: Fix bug applying latest post setting to blog<\\/li>\\n<li>[*] Backgrounds: Upload buttons now use Media Library<\\/li>\\n<li>[!] Blog: Fix masonry spacing issues<\\/li>\\n<li>[*] Page Header: Code cleanup<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(10\\/11\\/2014) - 0.4<\\/strong><\\/p>\\n<ul>\\n<li>[+] Copyright: Allow shortcodes in Copyright<\\/li>\\n<li>[*] Copyright: Changed copyright field to textarea<\\/li>\\n<li>[!] Blog: Fix mobile bug in masonry blog on iPhone<\\/li>\\n<li>[*] Spacing: Change separator spacing from padding to margin<\\/li>\\n<li>[*] Translation files updated<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(10\\/2\\/2014) - 0.3<\\/strong><\\/p>\\n<ul>\\n<li>[!] Blog: Not able to hide author on single posts<\\/li>\\n<li>[!] Backgrounds: Background images double in content if One Container is set<\\/li>\\n<li>[+] GP Hooks: Add After Footer Widgets to GP Hooks<\\/li>\\n<li>[+] Secondary Nav: Option to change \\\"Menu\\\" label on mobile secondary navigation<\\/li>\\n<li>[!] Page Header: buddypress fix<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(9\\/17\\/2014) - 0.2<\\/strong><\\/p>\\n<ul>\\n<li>[*] Make Google Fonts call more robust<\\/li>\\n<li>[!] Fix secondary navigation link color when floating right<\\/li>\\n<li>[+] Background image options added to secondary navigation<\\/li>\\n<li>[+] File structures cleaned up<\\/li>\\n<li>[+] Masonry width and most recent post masonry width options added<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(9\\/7\\/2014) - 0.1<\\/strong><\\/p>\\n<ul>\\n<li>Initial Release<\\/li>\\n<\\/ul>\\n\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":\"a:0:{}\",\"description\":[\"<p>GP Premium is one powerful plugin that includes all of our awesome add-ons, which you can turn on and off as needed.<\\/p>\\n\"],\"changelog\":[\"<p><strong>(6\\/12\\/2019) - 1.8.3<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Use flexbox for center aligned nav with nav branding<\\/li>\\n<li>Menu Plus: Center overlay off canvas exit button on mobile<\\/li>\\n<li>Menu Plus: Add alt tag to sticky nav logo<\\/li>\\n<li>Menu Plus: Set generate_not_mobile_menu_media_query filter based on mobile menu breakpoint<\\/li>\\n<li>Sections: Remember when text tab is active<\\/li>\\n<li>Sections: Disable visual editor if turned off in profile<\\/li>\\n<li>Typography: Add generate_google_font_display filter<\\/li>\\n<li>WooCommerce: Fix single product sidebar layout metabox option<\\/li>\\n<li>WooCommerce: Reduce carousel thumbnail max-width to 100px to match new thumbnail sizes<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/2\\/2019) - 1.8.2<\\/strong><\\/p>\\n<ul>\\n<li>Elements: Use Page Hero site title color for mobile header site title<\\/li>\\n<li>Menu Plus: Give mobile header site title more left spacing<\\/li>\\n<li>Menu Plus: Fix nav search icon in sticky navigation when using nav branding in Firefox<\\/li>\\n<li>Site Library: Show Site Library tab even if no sites exist<\\/li>\\n<li>Site Library: Show an error message in Site Library if no sites exist<\\/li>\\n<li>Typography: Remove reference to generate_get_navigation_location() function<\\/li>\\n<li>WooCommerce: Remove quantity field arrows when using quantity buttons in Firefox<\\/li>\\n<li>WooCommerce: Remove extra border when loading quantity buttons<\\/li>\\n<li>WooCommerce: Use get_price_html() is sticky add to cart panel<\\/li>\\n<\\/ul>\\n<p><strong>(4\\/24\\/2019) - 1.8.1<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Revert sticky nav duplicate ID fix due to Cyrillic script bug<\\/li>\\n<\\/ul>\\n<p><strong>(4\\/24\\/2019) - 1.8.0<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Apply columns filter to masonry grid sizer<\\/li>\\n<li>Colors: Merge Footer Widgets and Footer controls in Color panel<\\/li>\\n<li>Colors: Remove edit_theme_options capability to Customizer controls (set by default)<\\/li>\\n<li>Disable Elements: Make sure mobile header is disabled when primary navigation is disabled<\\/li>\\n<li>Elements: Add content width option in Layout Element<\\/li>\\n<li>Elements: Fix mobile header logo when mobile menu toggled<\\/li>\\n<li>Elements: Add generate_page_hero_location filter<\\/li>\\n<li>Elements: Add generate_elements_show_object_ids filter to show IDs in Display Rule values<\\/li>\\n<li>Elements: Prevent merged header wrap from conflicting with Elementor controls<\\/li>\\n<li>Elements: Change Container tab name to Content<\\/li>\\n<li>Elements: Add woocommerce_share option to Hooks<\\/li>\\n<li>Elements: Improve WPML compatibility<\\/li>\\n<li>Elements: Improve Polylang compatibility<\\/li>\\n<li>Elements: Prevent PHP notices when adding taxonomy locations to non-existent archives<\\/li>\\n<li>Elements: Add generate_mobile_cart_items hook to hook list<\\/li>\\n<li>Elements: Add generate_element_post_id filter<\\/li>\\n<li>Elements: Escape HTML elements inside Element textarea<\\/li>\\n<li>Elements: Add Beaver Builder templates to the Display Rules<\\/li>\\n<li>Menu Plus: Add mobile header breakpoint option<\\/li>\\n<li>Menu Plus: Add off canvas overlay option<\\/li>\\n<li>Menu Plus: Add navigation as header option<\\/li>\\n<li>Menu Plus: Remove navigation logo option if navigation as header set<\\/li>\\n<li>Menu Plus: Add sticky navigation logo option<\\/li>\\n<li>Menu Plus: Allow site title in mobile header instead of logo<\\/li>\\n<li>Menu Plus: Add option to move exit button inside the off canvas panel<\\/li>\\n<li>Menu Plus: Change Slideout Navigation name to Off Canvas Panel<\\/li>\\n<li>Menu Plus: Only re-focus after slideout close on escape key<\\/li>\\n<li>Menu Plus: Give close slideout event a name so it can be removed<\\/li>\\n<li>Menu Plus: Remove invalid transition-delay<\\/li>\\n<li>Menu Plus: Improve slideout overlay transition<\\/li>\\n<li>Menu Plus: Add mobile open\\/close icons to GPP font<\\/li>\\n<li>Menu Plus: Allow dynamic widget classes in off canvas panel (fixes WC range slider widget issue)<\\/li>\\n<li>Menu Plus: Basic compatibility with future SVG icons<\\/li>\\n<li>Menu Plus: Prevent duplicate IDs when sticky navigation is cloned<\\/li>\\n<li>Secondary Nav: Add dropdown direction option<\\/li>\\n<li>Secondary Nav: Basic compatibility with future SVG icons<\\/li>\\n<li>Sections: Fix section editor issues in WP 5.0<\\/li>\\n<li>Sections: Show Better Font Awesome icon in editor<\\/li>\\n<li>Sites: Re-design UI<\\/li>\\n<li>Sites: Add option to activate as a module like all the other modules<\\/li>\\n<li>Sites: Don\'t show backup options button if no options exist<\\/li>\\n<li>Sites: Make JS action classes more specific to the site library<\\/li>\\n<li>Sites: Set mime types of content.xml and widgets.wie<\\/li>\\n<li>Spacing: Add header padding option for mobile<\\/li>\\n<li>Spacing: Add widget padding option for mobile<\\/li>\\n<li>Spacing: Add footer widgets padding option for mobile<\\/li>\\n<li>Spacing: Add content separator option<\\/li>\\n<li>Spacing: Apply mobile menu item width to mobile bar only<\\/li>\\n<li>WooCommerce: Add option for mini cart in the menu<\\/li>\\n<li>WooCommerce: Add option to open off overlay panel on add to cart<\\/li>\\n<li>WooCommerce: Add option to open sticky add to cart panel on single products<\\/li>\\n<li>WooCommerce: Add option to add +\\/- buttons to the quantity fields<\\/li>\\n<li>WooCommerce: Add option to show number of items in cart menu item<\\/li>\\n<li>WooCommerce: Add option to choose single product image area width<\\/li>\\n<li>WooCommerce: Add color options for price slider widget<\\/li>\\n<li>WooCommerce: Use CSS grid for the product archives<\\/li>\\n<li>WooCommerce: Horizontally align add to cart buttons<\\/li>\\n<li>WooCommerce: Re-design the cart widget<\\/li>\\n<li>WooCommerce: Tighten up product info spacing<\\/li>\\n<li>WooCommerce: Improve product tab design to look more like tabs<\\/li>\\n<li>WooCommerce: Simplify single product image display<\\/li>\\n<li>WooCommerce: Use flexbox for quantity\\/add to cart alignment<\\/li>\\n<li>WooCommerce: Improve rating star styles<\\/li>\\n<li>WooCommerce: Use product alignment setting for related\\/upsell products<\\/li>\\n<li>WooCommerce: Remove bottom margin from product image<\\/li>\\n<li>WooCommerce: Organize colors in the Customizer<\\/li>\\n<li>WooCommerce: Remove title attribute from menu cart item<\\/li>\\n<li>WooCommerce: Improve coupon field design<\\/li>\\n<li>WooCommerce: Improve result count\\/ordering styling<\\/li>\\n<li>WooCommerce: Add gap around WC single product images<\\/li>\\n<li>WooCommerce: Remove arrow from checkout button<\\/li>\\n<li>WooCommerce: Hide view cart link on add to cart click<\\/li>\\n<li>WooCommerce: Organize CSS<\\/li>\\n<li>Introduce in-Customizer shortcuts<\\/li>\\n<li>Add generate_disable_customizer_shortcuts filter<\\/li>\\n<\\/ul>\\n<p><strong>(2\\/22\\/2019) - 1.7.8<\\/strong><\\/p>\\n<ul>\\n<li>Sites: Prevent future compatibility issues with Elementor by removing automatic URL replacement<\\/li>\\n<\\/ul>\\n<p><strong>(12\\/17\\/2018) - 1.7.7<\\/strong><\\/p>\\n<ul>\\n<li>Sites: Fix failed content import in specific PHP versions<\\/li>\\n<\\/ul>\\n<p><strong>(12\\/13\\/2018) - 1.7.6<\\/strong><\\/p>\\n<ul>\\n<li>Elements: Hide Add New button when opening saved Element with no type<\\/li>\\n<li>Sections: Show page title in Gutenberg when Sections are active<\\/li>\\n<li>Sections: Fix relative image URLs inside the Section editor<\\/li>\\n<li>Sites: Fix failed content\\/widget import in WP 5.0.1\\/4.9.9<\\/li>\\n<li>Sites: Fix no access to WooCommerce setup wizard<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/21\\/2018) - 1.7.5<\\/strong><\\/p>\\n<ul>\\n<li>Colors: Improve block editor button color preview<\\/li>\\n<li>Menu Plus: Mobile menu items hidden behind content with higher z-index when sticky<\\/li>\\n<li>Menu Plus: Prevent mobile menu from covering mobile toggle when sticky<\\/li>\\n<li>Menu Plus: Don\'t close mobile menu if # is the whole URL<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/19\\/2018) - 1.7.4<\\/strong><\\/p>\\n<ul>\\n<li>Colors: Fix navigation live color preview issues<\\/li>\\n<li>Colors: Move navigation parent item title down in Customizer<\\/li>\\n<li>Elements: Allow slashes in hook names<\\/li>\\n<li>General: Fix smooth scroll anchor location on mobile (requires GP 2.2)<\\/li>\\n<li>Menu Plus: Use https for navigation microdata<\\/li>\\n<li>Menu Plus: Remove header-image class from navigation and mobile header logos<\\/li>\\n<li>Menu Plus: Add navigation search height support to mobile header and sticky nav<\\/li>\\n<li>Typography: Include block editor button in live preview<\\/li>\\n<\\/ul>\\n<p><strong>(10\\/29\\/2018) - 1.7.3<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Allow masonry to be turned off using a boolean filter<\\/li>\\n<li>Blog: Fix load more button appearing when not needed<\\/li>\\n<li>Blog: Remove infinite scroll load more button from WooCommerce archives<\\/li>\\n<li>Blog: Prevent content width option from applying to columns<\\/li>\\n<li>Elements: Fix empty object fields when Post Archive is set<\\/li>\\n<li>Elements: Allow slashes in custom hook field<\\/li>\\n<li>Elements: Allow multiple layout elements per condition<\\/li>\\n<li>Elements: Allow 0 value in mobile padding options<\\/li>\\n<li>Elements: Prevent PHP notice if $post isn\'t an object<\\/li>\\n<li>Gutenberg: Add initial support for live preview spacing of Gutenberg blocks<\\/li>\\n<li>Menu Plus: Add menu-item-align-right class to slideout toggle<\\/li>\\n<li>Menu Plus: Fix JS error in slideout navigation when no menu is set<\\/li>\\n<li>Sites: Fix image shadow on hover<\\/li>\\n<li>Sites: Add message when no plugins are needed<\\/li>\\n<li>Sites: Update custom link URL in menu items<\\/li>\\n<li>Sites: Prevent PHP warning in PHP 7.3<\\/li>\\n<li>Sites: Add generate_sites_ignore_plugins filter<\\/li>\\n<li>Sites: Fix WooCommerce setup wizard conflict with Site Library<\\/li>\\n<li>Sites: Fix PHP notices during WooCommerce setup wizard<\\/li>\\n<li>Typography: Add support for H1-H3 bottom margin options<\\/li>\\n<li>WooCommerce: Add menu-item-align-right class to cart menu item<\\/li>\\n<li>WooCommerce: Fix multi column product spacing on mobile<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/20\\/2018) - 1.7.2<\\/strong><\\/p>\\n<ul>\\n<li>Elements: Fix admin body class spaces<\\/li>\\n<li>General: Fix JS error in anchors when smooth scroll class not added<\\/li>\\n<li>General: Fix sticky navigation offset when using smooth scroll<\\/li>\\n<li>WooCommerce: Apply Elementor Pro WC columns fix to Elementor Pro widget only<\\/li>\\n<li>WooCommerce: Fix BlockUI issue<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/15\\/2018) - 1.7.1<\\/strong><\\/p>\\n<ul>\\n<li>Elements: Fix PHP error in PHP 5.3<\\/li>\\n<li>Elements: Fix Choose Element not showing due to some third party plugins<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/14\\/2018) - 1.7<\\/strong><\\/p>\\n<p>This update introduces a new premium module called \\\"Elements\\\". Learn more <a href=\\\"https:\\/\\/generatepress.com\\/gp-premium-1-7\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">here<\\/a>.<\\/p>\\n<ul>\\n<li>Blog: Prevent masonry container jump on load<\\/li>\\n<li>Blog: Change \\u201cFull\\u201d label to \\u201cFull Content\\u201d<\\/li>\\n<li>New: Elements module<\\/li>\\n<li>Elements: Header element (replaces the Page Header module)<\\/li>\\n<li>Elements: Hook element (replaces the Hooks module)<\\/li>\\n<li>Elements: Layout element<\\/li>\\n<li>Hooks: Replaced by Elements module<\\/li>\\n<li>Hooks: Move link to legacy hooks inside Elements area<\\/li>\\n<li>Import\\/Export: Re-write code<\\/li>\\n<li>Import\\/Export: Import activated modules<\\/li>\\n<li>Menu Plus: Fix slideout close button alignment\\/color issues<\\/li>\\n<li>Menu Plus: Fix slideout issue with relative main navigation CSS<\\/li>\\n<li>Menu Plus: Fix ul display inside slideout navigation widget<\\/li>\\n<li>Menu Plus: Change Slideout Navigation theme location label to Slideout Menu<\\/li>\\n<li>Menu Plus: Close slideout navigation when a link within it is clicked<\\/li>\\n<li>Menu Plus: Show slideout navigation theme location option after Primary<\\/li>\\n<li>Menu Plus: Improve a11y of slideout navigation<\\/li>\\n<li>Menu Plus: Add\\u00a0.site-wrapper\\u00a0class compatibility to sticky nav<\\/li>\\n<li>Menu Plus: Prepare offside.js for future button dropdown menu toggle<\\/li>\\n<li>Menu Plus: Add\\u00a0.slideout-exit\\u00a0class to close slideout<\\/li>\\n<li>Page Header: Replaced by Elements module<\\/li>\\n<li>Page Header: Move link to legacy Page Headers inside Elements area<\\/li>\\n<li>Page Header: Fix hentry Google Search Console errors<\\/li>\\n<li>Page Header: Fix clearing element issue<\\/li>\\n<li>Page Header: WPML fix in global locations<\\/li>\\n<li>Page Header: Prevent PHP notices within Elementor Library area<\\/li>\\n<li>Page Header: Fix retina logo issue (in new Elements module only)<\\/li>\\n<li>Page Header: Show original logo in sticky navigation (in new Elements module only)<\\/li>\\n<li>Page Header: Add mobile header logo option (in new Elements module only)<\\/li>\\n<li>Secondary Nav: Show theme location option after Primary<\\/li>\\n<li>Sections: Allow Sections when Gutenberg is activated<\\/li>\\n<li>Sections: Hide Gutenberg editor when Sections enabled<\\/li>\\n<li>Sections: Fix text domain issues<\\/li>\\n<li>Sections: Use regular checkbox for use sections<\\/li>\\n<li>Spacing: Add future support for sub-menu width option<\\/li>\\n<li>Sites: Fix .complete class conflicts<\\/li>\\n<li>Sites: Add GENERATE_DISABLE_SITE_LIBRARY constant<\\/li>\\n<li>Sites: Remove verified provider debug notice<\\/li>\\n<li>WooCommerce: Add shopping bag and shopping basket icon options to cart menu item<\\/li>\\n<li>WooCommerce: Fix WC error with non-product post types<\\/li>\\n<li>WooCommerce: Fix too many WC star issue<\\/li>\\n<li>WooCommerce: Add CSS for cart menu item in secondary nav<\\/li>\\n<li>WooCommerce: Add WC menu item location filter to mobile cart<\\/li>\\n<li>WooCommerce: Fix issue with disabling sale badge when set to overlay<\\/li>\\n<li>WooCommerce: Add option to disable\\/enable sale badge on single product pages<\\/li>\\n<li>WooCommerce: Fix my account icon on mobile<\\/li>\\n<li>General: Fix smooth scroll issues on mobile<\\/li>\\n<li>General: Improve overall smooth scroll functionality<\\/li>\\n<li>General: Add generate_smooth_scroll_elements filter<\\/li>\\n<li>General: Move GPP icons from Font Awesome to custom icons<\\/li>\\n<li>A11y: Add context to all \\u201cContained\\u201d strings<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/28\\/2018) - 1.6.2<\\/strong><\\/p>\\n<ul>\\n<li>Sites: Prevent PHP notice when Sites can\'t be reached<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/28\\/2018) - 1.6.1<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix infinite scroll masonry issues in Firefox<\\/li>\\n<li>General: Improve smooth scroll script<\\/li>\\n<li>Import\\/Export: Show modules to export if defined in wp-config.php<\\/li>\\n<li>Sites: Prevent PHP warnings if no Sites are found<\\/li>\\n<li>Sites: Add generate_disable_site_library filter to disable Site Library<\\/li>\\n<li>Sites: Improve page builder filter display<\\/li>\\n<li>Sites: Prevent duplicate site display after details button in preview clicked<\\/li>\\n<li>WooCommerce: Add missing icons if Font Awesome is turned off<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/22\\/2018) - 1.6<\\/strong><\\/p>\\n<ul>\\n<li>New: Sites module<\\/li>\\n<li>Translations: Merge all translations into gp-premium text domain<\\/li>\\n<li>General: Add smooth scroll option<\\/li>\\n<li>General: Move batch processing files into library<\\/li>\\n<li>General: Add GPP icon set<\\/li>\\n<li>General: WPCS and PHPCS improvements<\\/li>\\n<li>Blog: Fix PHP 7.2 warning<\\/li>\\n<li>Blog: Fix Safari infinite scroll issues with srcset<\\/li>\\n<li>Blog: Refresh masonry on infinite scroll append<\\/li>\\n<li>Blog: Remove infinite scroll on 404 and no results pages<\\/li>\\n<li>Blog: Fix Yoast SEO breaking columns with certain settings<\\/li>\\n<li>Blog: Re-layout masonry on load<\\/li>\\n<li>Colors: Add slideout navigation color options<\\/li>\\n<li>Colors: Merge navigation + sub-navigation options into one section<\\/li>\\n<li>Import\\/Export: One click export and import<\\/li>\\n<li>Menu Plus: Re-build slideout navigation to use vanilla JS<\\/li>\\n<li>Menu Plus: Add slideout navigation widget area<\\/li>\\n<li>Menu Plus: Add close icon to slideout navigation<\\/li>\\n<li>Menu Plus: Set sticky nav ID on refresh if stuck<\\/li>\\n<li>Menu Plus: Allow WPML to modify Page Header select metabox<\\/li>\\n<li>Menu Plus: Re-build mobile header using flexbox<\\/li>\\n<li>Menu Plus: Use CSS for slideout navigation icon<\\/li>\\n<li>Menu Plus: Fix sticky navigation slide down in Safari<\\/li>\\n<li>Menu Plus: Add workaround for iOS sticky nav search issue<\\/li>\\n<li>Page Header: Improve Page Header metabox UI on smaller screens<\\/li>\\n<li>Page Header: Use author display name in template tag<\\/li>\\n<li>Page Header: Add generate_page_header_id filter<\\/li>\\n<li>Page Header: Fix vertical center issues in IE11<\\/li>\\n<li>Page Header: Remove flexibility.js for IE8 support<\\/li>\\n<li>Page Header: Fix GiveWP compatibility<\\/li>\\n<li>Secondary Navigation: Re-build CSS<\\/li>\\n<li>Sections: Disable Gutenberg if Sections are activated<\\/li>\\n<li>Sections: Add generate_sections_gutenberg_compatible filter<\\/li>\\n<li>Spacing: Fix one container widget padding preview in Customizer<\\/li>\\n<li>Typography: Add Slideout Navigation typography options<\\/li>\\n<li>WooCommerce: Clear up-sells when directly after entry content<\\/li>\\n<li>WooCommerce: Fix placeholder text cut off in Firefox<\\/li>\\n<li>WooCommerce: Use GPP icon set for cart menu item<\\/li>\\n<li>WooCommerce: Load .js in the footer<\\/li>\\n<li>Update Background Process library<\\/li>\\n<li>Clean up code license key activation code<\\/li>\\n<li>Remove verify.php<\\/li>\\n<li>Prevent PHP notice when saving empty license<\\/li>\\n<li>Add beta testing checkbox to license key area<\\/li>\\n<\\/ul>\\n<p><strong>(12\\/4\\/2017) - 1.5.6<\\/strong><\\/p>\\n<ul>\\n<li>Backgrounds: Make position control description translatable<\\/li>\\n<li>Blog: Fix disabled page featured images if post featured images are disabled<\\/li>\\n<li>Blog: Let WP handle featured image alt attributes<\\/li>\\n<li>Colors: Fix text domain<\\/li>\\n<li>Colors: Improve inconsistent live preview behavior<\\/li>\\n<li>Menu Plus: Prep desktop only slideout icon for GP 2.0<\\/li>\\n<li>Page Header: Allow unfiltered HTML in content if user is allowed<\\/li>\\n<li>Page Header: Only load CSS file if content is added<\\/li>\\n<li>Typography: Fix h5 font size not appearing in GP 2.0<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/22\\/2017) - 1.5.5<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix broken images while using Infinite Scroll in Safari<\\/li>\\n<li>Typography: Fix first variant not appearing when you select a font<\\/li>\\n<li>Typography: Fix select issues when plugins load old versions of the select2 library<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/18\\/2017) - 1.5.4<\\/strong><\\/p>\\n<ul>\\n<li>Sections: Fix Visual\\/Text tab in WP 4.9<\\/li>\\n<li>Sections: Fix Content\\/Settings tab in WP 4.9<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/14\\/2017) - 1.5.3<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix masonry filter not working on custom post type archives<\\/li>\\n<li>Blog: Fix resized featured images when page header resizer is enabled<\\/li>\\n<li>Blog: Fix broken Customizer toggles in Safari<\\/li>\\n<li>Page Header: Fix PHP notice when saving posts<\\/li>\\n<li>Fix\\/add various gettext values<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/10\\/2017) - 1.5.2<\\/strong><\\/p>\\n<ul>\\n<li>Backgrounds: Fix issue with saving background image options<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/9\\/2017) - 1.5.1<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Make infinite scroll container selector more specific<\\/li>\\n<li>Page Header: Fix background video when container is contained<\\/li>\\n<li>Page Header: Remove featured image on attachment pages<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/8\\/2017) - 1.5<\\/strong><\\/p>\\n<ul>\\n<li>Backgrounds: Rebuild Customizer control<\\/li>\\n<li>Blog: Move Blog panel into the Layout panel<\\/li>\\n<li>Blog: Migrate options from select dropdowns to checkboxes where applicable<\\/li>\\n<li>Blog: Merge masonry + column options into one area<\\/li>\\n<li>Blog: Add new post meta visibility options for single posts<\\/li>\\n<li>Blog: Replace old image resizer (aq_resize) with Image Processing Queue (reload your site once or twice to build new images)<\\/li>\\n<li>Blog: Add single post featured image options<\\/li>\\n<li>Blog: Add page featured image options<\\/li>\\n<li>Blog: Remove masonry meta box<\\/li>\\n<li>Blog: Add option to remove padding around centered featured images<\\/li>\\n<li>Blog: Add option to turn read more link into button<\\/li>\\n<li>Blog: Add option to turn on infinite scroll regardless of layout<\\/li>\\n<li>Blog: Use infinite scroll with or without a load more button<\\/li>\\n<li>Blog: Make read more links better for accessibility<\\/li>\\n<li>Blog: Migrate single post page header position option to single featured image location option<\\/li>\\n<li>Blog: Remove ellipses if excerpt is set to 0<\\/li>\\n<li>Blog: Change style.css handle to include generate prefix<\\/li>\\n<li>Blog: Remove unnecessary IE8 support<\\/li>\\n<li>Blog: Add alt attribute to featured images<\\/li>\\n<li>Blog: Fix pagination spacing when One Container is set<\\/li>\\n<li>Blog: Fix column\\/masonry spacing at 768px<\\/li>\\n<li>Colors: Add select input live preview settings<\\/li>\\n<li>Colors: Fix button labels<\\/li>\\n<li>Copyright: Move Copyright section into Layout panel<\\/li>\\n<li>Menu Plus: Fix mobile menu logo bug when navigation is set to float right<\\/li>\\n<li>Menu Plus: Fix no transition sticky navigation bug while on mobile<\\/li>\\n<li>Page Header: Replace old image resizer (aq_resize) with Image Processing Queue (reload your site once or twice to build new images)<\\/li>\\n<li>Page Header: Don\'t use global page header locations if not published<\\/li>\\n<li>Page Header: Sanitize page header content when saved to database<\\/li>\\n<li>Page Header: Make sure Elementor sections are accessible when page header is merged<\\/li>\\n<li>Page Header: Prepare transparent color picker for WP 4.9 changes<\\/li>\\n<li>Page Header: Fix background video in Safari 11<\\/li>\\n<li>Page Header: Add global locations for taxonomies<\\/li>\\n<li>Page Header: Add {{custom_field.description}} template tag to taxonomies (categories etc..)<\\/li>\\n<li>Page Header: Add ID to page header element<\\/li>\\n<li>Page Header: Fix individual taxonomy page header control not appearing on Toolset created taxonomies<\\/li>\\n<li>Page Header: Ensure jQuery Vide (video background) script only loads when needed<\\/li>\\n<li>Page Header: Fix custom images not displaying<\\/li>\\n<li>Page Header: Fix image link option not working<\\/li>\\n<li>Typography: Lay groundwork for H6 options<\\/li>\\n<li>Typography: Space out heading typography options<\\/li>\\n<li>Typography: Add System Stack option<\\/li>\\n<li>Typography: Fix Google Font variant control in WP 4.9<\\/li>\\n<li>Sections: Show Envira button<\\/li>\\n<li>Sections: Show Gridable button<\\/li>\\n<li>Sections: Prepare transparent color picker for WP 4.9 changes<\\/li>\\n<li>WooCommerce: Add filter to cart menu item location<\\/li>\\n<li>WooCommerce: Better activation compatibility with multi-site<\\/li>\\n<li>WooCommerce: Use wc_get_cart_url() for menu item<\\/li>\\n<li>German translations updated (Thanks, Daniel!)<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/18\\/2017) - 1.4.3<\\/strong><\\/p>\\n<ul>\\n<li>Page Header: Pass args to post_thumbnail_html filter<\\/li>\\n<li>Page Header: Allow custom field template tags on pages<\\/li>\\n<li>Page Header: Re-add generate_page_header_video_loop filter<\\/li>\\n<li>Page Header: Add generate_page_header_video_muted filter<\\/li>\\n<li>Page Header: Remove taxonomy title if page header has title<\\/li>\\n<li>WooCommerce: Improve disabled WC button styling<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/11\\/2017) - 1.4.2<\\/strong><\\/p>\\n<ul>\\n<li>Page Header: Improve inner container<\\/li>\\n<li>Page Header: Allow contained page header even when position:absolute is set<\\/li>\\n<li>Page Header: Apply page header text color to headings in page header<\\/li>\\n<li>WooCommerce: Fix mobile columns issue<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/9\\/2017) - 1.4.1<\\/strong><\\/p>\\n<ul>\\n<li>Page Header: Fix error in Customizer when using PHP version &lt; 5.5<\\/li>\\n<\\/ul>\\n<p><strong>(8\\/9\\/2017) - 1.4<\\/strong><\\/p>\\n<ul>\\n<li>Colors: Add back to top button color options<\\/li>\\n<li>Colors: Add h4-h5 color options<\\/li>\\n<li>Colors: Move button color options into own Buttons section<\\/li>\\n<li>Hooks: Show PHP execution message to admins only<\\/li>\\n<li>Menu Plus: Improve disabling of native mobile menu when slide-out is set<\\/li>\\n<li>Menu Plus: Fix sticky mobile menu when navigation is in sidebar<\\/li>\\n<li>Menu Plus: Fix invisible navigation when slide sticky is shown\\/hidden quickly<\\/li>\\n<li>Page Header: Complete code re-write<\\/li>\\n<li>Page Header: Turn Page Headers into a custom post type (CPT)<\\/li>\\n<li>Page Header: Can be applied per page, or globally (pages, posts, categories, CPTs etc..)<\\/li>\\n<li>Page Header: Template tags can be used in Page Header content (page title, author, date)<\\/li>\\n<li>Page Header: Turn bg color options in RGBA picker<\\/li>\\n<li>Page Header: New use bg color as image overlay option<\\/li>\\n<li>Page Header: Re-write parallax feature<\\/li>\\n<li>Page Header: Migrate Blog Page Header in Customizer into a CPT post on update<\\/li>\\n<li>Page Header: Add \\\"Inner Container\\\" width option.<\\/li>\\n<li>Page Header: Add menu background color (instead of forcing transparent)<\\/li>\\n<li>Page Header: Show content options all the time<\\/li>\\n<li>Page Header: Force full width page header if merge is set<\\/li>\\n<li>Page Header: Use set default color palettes in color pickers<\\/li>\\n<li>Page Header: New left\\/right padding option<\\/li>\\n<li>Sections: Make background color rgba color picker<\\/li>\\n<li>Sections: Add background color overlay options<\\/li>\\n<li>Sections: Use set default color palettes in color pickers<\\/li>\\n<li>Sections: Fix dropdown z-index bug introduced in WP 4.8.1<\\/li>\\n<li>Typography: Add H1-H3 line-height options<\\/li>\\n<li>Typography: Add H4-H5 typography options<\\/li>\\n<li>Typography: Add footer\\/copyright area typography options<\\/li>\\n<li>Typography: Add button typography options<\\/li>\\n<li>Typography: Rename Content Customizer section to Headings<\\/li>\\n<li>Typography: Add widget title separating space option<\\/li>\\n<li>Typography: Make fonts in Customizer search-able<\\/li>\\n<li>Typography: Allow Google Font variants to be added\\/removed<\\/li>\\n<li>WooCommerce: Fix columns issue on some pages<\\/li>\\n<li>WooCommerce: Fix mobile columns when using shortcode<\\/li>\\n<li>WooCommerce: Fix extra spacing in empty cart menu item<\\/li>\\n<li>WooCommerce: Show Cart text if no icon<\\/li>\\n<li>WooCommerce: Make cart menu item filterable<\\/li>\\n<li>WooCommerce: Fix sales badge height in IE11<\\/li>\\n<\\/ul>\\n<p><strong>(6\\/19\\/2017) - 1.3.1<\\/strong><\\/p>\\n<ul>\\n<li>Hooks: Add notice to disable PHP execution if DISALLOW_FILE_EDIT is defined<\\/li>\\n<li>Menu Plus: Fix RTL spacing in slide-out menu<\\/li>\\n<li>Menu Plus: Fix bug where sticky nav was interfering with mobile header<\\/li>\\n<li>Menu Plus: Merge all sticky nav transitions into one script<\\/li>\\n<li>Menu Plus: Re-write fade and slide sticky navigation transitions<\\/li>\\n<li>Menu Plus: Add new option to hide sticky navigation while scrolling down<\\/li>\\n<li>WooCommerce: Add padding to terms on checkout<\\/li>\\n<li>WooCommerce: Make shop page options work when shop is set to category display<\\/li>\\n<li>WooCommerce: Style mark element<\\/li>\\n<li>WooCommerce: Remove border\\/padding from checkout fields<\\/li>\\n<li>WooCommerce: Remove color from my account arrows<\\/li>\\n<li>WooCommerce: Adjust ship to address padding<\\/li>\\n<li>WooCommerce: Fix ul elements when WC image is floating<\\/li>\\n<li>WooCommerce: Fix pagination clearing issue<\\/li>\\n<li>WooCommerce: Add pt_BR translation<\\/li>\\n<li>WooCommerce: Fix spacing issue with menu item cart icon and certain fonts<\\/li>\\n<li>Fix double forward slashes in some script calls inside Customizer<\\/li>\\n<li>Add WPML config file<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/17\\/2017) -\\u00a01.3<\\/strong><\\/p>\\n<ul>\\n<li>Backgrounds: Fix big with 100% auto sizing option<\\/li>\\n<li>Colors: Add WooCommerce add-on colors<\\/li>\\n<li>Import\\/Export: Add WooCommerce add-on<\\/li>\\n<li>Menu Plus: Improve Navigation Logo sizing<\\/li>\\n<li>Menu Plus: Re-write no transition sticky navigation<\\/li>\\n<li>Secondary Nav: Add padding to sides of top bar when merged<\\/li>\\n<li>Secondary Nav: Only load resources if the Secondary theme location is set<\\/li>\\n<li>Sections: Fix mix up of left\\/right content padding<\\/li>\\n<li>Spacing: New mobile menu item width\\/height options<\\/li>\\n<li>Spacing: New sticky menu item height option<\\/li>\\n<li>Spacing: New slide-out menu item height option<\\/li>\\n<li>Typography: New mobile menu item font size option<\\/li>\\n<li>WooCommerce: Introducing new WooCommerce add-on<\\/li>\\n<li>Move all Customizer controls and helper functions into globally accessible library<\\/li>\\n<li>Rebuilt range slider control to include responsive icons which display responsive controls<\\/li>\\n<li>Rebuilt typography control reducing number of controls from 50 to 10 (performance)<\\/li>\\n<li>Updated the automatic updater function<\\/li>\\n<li>Add filter to enable beta updates: generate_premium_beta_tester<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/15\\/2017) - 1.2.96<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix option sanitizing for read more and masonry loading options<\\/li>\\n<li>Copyright: Fix option sanitizing for Customizer textarea<\\/li>\\n<li>Disable Elements: Fix PHP notice when saving post<\\/li>\\n<li>Menu Plus: Fix option sanitizing for mobile menu label option<\\/li>\\n<li>Page Header: Fix PHP notice when saving post<\\/li>\\n<li>Secondary Nav: Fix option sanitizing for mobile menu label option<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/14\\/2017) -\\u00a01.2.95<\\/strong><\\/p>\\n<ul>\\n<li>Add notice if GeneratePress theme isn\'t activated<\\/li>\\n<li>Add notice if GeneratePress theme update is available<\\/li>\\n<li>General code cleanup and optimization<\\/li>\\n<li>Backgrounds: Use new CSS class to write dynamic CSS<\\/li>\\n<li>Backgrounds: Deprecate Generate_Backgrounds_Customize_Misc_Control<\\/li>\\n<li>Backgrounds: Add options to the new top bar widget area<\\/li>\\n<li>Blog: Add generate_excerpt_more_output filter to read more link<\\/li>\\n<li>Blog: Add generate_content_more_link_output filter to read more link when more tag is added<\\/li>\\n<li>Blog: Remove ellipses from Read more link default<\\/li>\\n<li>Blog: Use the_title_attribute() where necessary<\\/li>\\n<li>Blog: Add generate_excerpt_length filter<\\/li>\\n<li>Colors: Add options for new top bar widget area<\\/li>\\n<li>Copyright: General code clean up<\\/li>\\n<li>Disable Elements: Add new Top Bar widget area to disable options<\\/li>\\n<li>Disable Elements: Change Post Image label to Featured Image<\\/li>\\n<li>Disable Elements: Completely remove header HTML if set to disable<\\/li>\\n<li>Disable Elements: Completely remove navigation HTML if set to disable<\\/li>\\n<li>Disable Elements: Completely remove footer HTML if set to disable<\\/li>\\n<li>Disable Elements: Add generate_metabox_capability filter to meta box<\\/li>\\n<li>Hooks: Update jQuery cookie library<\\/li>\\n<li>Hooks: Add new GENERATE_HOOKS_DISALLOW_PHP constant to allow users to disable PHP execution<\\/li>\\n<li>Import Export: Verify correct option names<\\/li>\\n<li>Menu Plus: Change Navigation Logo Position label to Navigation Logo Placement<\\/li>\\n<li>Menu Plus: Make sure sticky.js only enqueues if absolutely necessary<\\/li>\\n<li>Menu Plus: Move Sticky Navigation options into their own section<\\/li>\\n<li>Menu Plus: Move Slide-out Navigation options into their own section<\\/li>\\n<li>Menu Plus: Fix slight icon width change when toggling slide-out navigation<\\/li>\\n<li>Menu Plus: Close slide-out menu on item click<\\/li>\\n<li>Page Header: Fix top margin when full width header is below the header<\\/li>\\n<li>Page Header: Use the_title_attribute() where necessary<\\/li>\\n<li>Page Header: Change \\\"Position\\\" labels to \\\"Location\\\"<\\/li>\\n<li>Page Header: Add new generate_page_header_metabox_capability filter to meta box<\\/li>\\n<li>Page Header: Prevent undefined index notices<\\/li>\\n<li>Secondary Nav: Fix sub-navigation background, text and image variables<\\/li>\\n<li>Secondary Nav: Add unit to value if it exists allowing 0px values<\\/li>\\n<li>Secondary Nav: Move background image options into the Backgrounds add-on<\\/li>\\n<li>Secondary Nav: Move spacing options into the Spacing add-on<\\/li>\\n<li>Secondary Nav: Move typography options into the Typography add-on<\\/li>\\n<li>Secondary Nav: Move color options into the Colors add-on<\\/li>\\n<li>Secondary Nav: Add option to merge with new top bar widget area<\\/li>\\n<li>Secondary Nav: Fix dropdown menu arrow spacing in live preview<\\/li>\\n<li>Secondary Nav: Use custom color palettes<\\/li>\\n<li>Sections: Improve CSS output<\\/li>\\n<li>Sections: Remove sections-no-sidebars class if Sections aren\'t activated<\\/li>\\n<li>Spacing: Improve mobile\\/non-mobile live previews in Customizer<\\/li>\\n<li>Spacing: Make sidebar width options range sliders<\\/li>\\n<li>Spacing: Add options for new top bar widget area<\\/li>\\n<li>Spacing: Add ability to link all 4 spacing controls together<\\/li>\\n<li>Spacing: Add all 4 sides to mobile content padding<\\/li>\\n<li>Spacing: Fix Customizer experience when switching between one container and separate containers<\\/li>\\n<li>Typography: Improve mobile\\/non-mobile live previews in Customizer<\\/li>\\n<li>Typography: Add options for new top bar widget area<\\/li>\\n<li>Typography: Update list of available fonts<\\/li>\\n<li>pt_PT translations added - thank you Pedro!<\\/li>\\n<\\/ul>\\n<p><strong>(1\\/25\\/2017) -\\u00a01.2.94<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Fix contained sticky menu with no transition + floating bug<\\/li>\\n<\\/ul>\\n<p><strong>(1\\/24\\/2017) -\\u00a01.2.93<\\/strong><\\/p>\\n<ul>\\n<li>Backgrounds: Fix 100% width option<\\/li>\\n<li>Blog: Change Post Image label to Featured Image<\\/li>\\n<li>Blog: Fully remove featured image if it\'s set to hide<\\/li>\\n<li>Colors: Add transparency slider to all background elements<\\/li>\\n<li>Colors: Remove defaults and dynamic CSS functions - the GP theme handles this<\\/li>\\n<li>Colors: Add new generate_default_color_palettes filter to set up default color palettes<\\/li>\\n<li>Copyright: Use new copyright filter if possible<\\/li>\\n<li>Disabe Elements: Hide mobile header if navigation is disabled<\\/li>\\n<li>Menu Plus: Remove classie.js<\\/li>\\n<li>Menu Plus: Add .navigation-stick class to all sticky menu transitions<\\/li>\\n<li>Menu Plus: Prevent slide-out navigation jump on desktop<\\/li>\\n<li>Menu Plus: Change Sticky Effect label to Sticky Transition<\\/li>\\n<li>Menu Plus: Clean up dynamic CSS<\\/li>\\n<li>Menu Plus: Add .navigation-logo class to the navigation logo<\\/li>\\n<li>Menu Plus: Rebuild and simplify navigation logo CSS<\\/li>\\n<li>Menu Plus: Add live preview to navigation logo height<\\/li>\\n<li>Menu Plus: Add new generate_navigation_logo to the Navigation Logo URL<\\/li>\\n<li>Menu Plus: Fix mixing up of slide-out and search icon when sticky and floating left\\/right<\\/li>\\n<li>Page Header: Add parallax speed filter - generate_page_header_parallax_speed<\\/li>\\n<li>Page Header: Make sure wp.media javascript object exist to avoid potential JS errors<\\/li>\\n<li>Page Header: Make parallax work when page header is set to contained width<\\/li>\\n<li>Page Header: Add generate_metabox_capability to Page Header meta box<\\/li>\\n<li>Page Header: Add new option to overwrite Navigation Logo per page<\\/li>\\n<li>Page Header: Fix full screen page header height when content is longer than the screen<\\/li>\\n<li>Secondary Nav: Change Navigation Position to Navigation Location<\\/li>\\n<li>Secondary Nav: Add defaults to the style.css and only add dynamic CSS if needed<\\/li>\\n<li>Secondary Nav: Improve mobile menu CSS<\\/li>\\n<li>Sections: Add new Section ID field<\\/li>\\n<li>Spacing: Fix instant preview for masonry and columns<\\/li>\\n<li>Spacing: Add size slider to the separator options<\\/li>\\n<li>Spacing: Add mobile content padding option<\\/li>\\n<li>Spacing: Improve live previewing performance in the Customizer<\\/li>\\n<li>Spacing: Remove defaults and dynamic CSS functions - the GP theme handles this<\\/li>\\n<li>Spacing: Set left and right footer widget area padding if it\'s set to 0<\\/li>\\n<li>Spacing: Clean up sidebar width code<\\/li>\\n<li>Spacing: Change range slider style to fit core WP style<\\/li>\\n<li>Typography: Move mobile font size options into their respective sections<\\/li>\\n<li>Typography: Remove defaults and dynamic CSS functions - the GP theme handles this<\\/li>\\n<li>Typography: Change generate_display_google_fonts() function to generate_enqueue_google_fonts()<\\/li>\\n<li>Typography: Change range slider style to fit core WP style<\\/li>\\n<li>Change license key field from text to password<\\/li>\\n<li>Czech translation updated<\\/li>\\n<li>German translation updated<\\/li>\\n<li>Brazilian translation added<\\/li>\\n<li>Italian translated updated<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/29\\/2016) -\\u00a01.2.92<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix category title and load more alignment while using masonry<\\/li>\\n<li>Blog: Fix masonry spacing on mobile<\\/li>\\n<li>Blog: Simplify masonry spacing<\\/li>\\n<li>Blog: Simplify columns spacing<\\/li>\\n<li>Menu Plus: Fix alignment jump when browser is zoomed in and resized down to 768px<\\/li>\\n<li>Menu Plus: Add generate_logo_title filter to sticky logo and mobile header logo<\\/li>\\n<li>Menu Plus: Add spacing to the menu logo when the inner navigation is set to full width<\\/li>\\n<li>Menu Plus: Fix navigation search issue with no transition sticky menu<\\/li>\\n<li>Menu Plus: Don\'t float mobile header navigation if no logo is set<\\/li>\\n<li>Typography: Adjust typography name sanitization function name to avoid errors with old GP versions<\\/li>\\n<li>Typography: Remove parameter from generate_display_google_fonts to avoid warning with child theme generators<\\/li>\\n<li>Typography: Add body line height option<\\/li>\\n<li>Typography: Add paragraph margin option<\\/li>\\n<li>Typography: Reduce copyright\\/footer font size default to 14px<\\/li>\\n<li>Typography: Add reset button to all size sliders<\\/li>\\n<li>Secondary Nav: Remove CSS which stops floating navigation at 1024px<\\/li>\\n<li>Secondary Nav: Fix jump when removing navigation in the Customizer<\\/li>\\n<li>Secondary Nav: New option: Inner navigation width<\\/li>\\n<li>Secondary Nav: Add reset button to font size slider<\\/li>\\n<li>Secondary Nav: Allow transitions on menu items<\\/li>\\n<li>Sections: Fix bug where error would happen if the user isn\'t using at least WordPress 4.5<\\/li>\\n<li>Sections: Remove GP theme grid dependency in admin<\\/li>\\n<li>Sections: Allow oembed in section content<\\/li>\\n<li>Sections: Use jQuery.on() instead of delegate()<\\/li>\\n<li>Sections: Remove unnecessary files<\\/li>\\n<li>Spacing: Prevent warning caused by wrong version constant<\\/li>\\n<li>Page Header: New filter: generate_get_blog_page_header - makes it possible to set the blog page header under different conditions<\\/li>\\n<li>Page Header: Improve full height page header functionality on mobile\\/orientation change<\\/li>\\n<li>Page Header: Remove fixed background attachment from parallax background image to help preserve image ratio<\\/li>\\n<li>Add prompt to add license key in Plugins area if it isn\'t activated and updates are available<\\/li>\\n<li>Move all language files into the \\/langs\\/ folder<\\/li>\\n<li>Reduce length of some text domains to avoid updating issue with some servers<\\/li>\\n<li>Chinese translations added - thanks Alfred!<\\/li>\\n<li>Portuguese translation added - thanks Alvaro!<\\/li>\\n<li>Russian translations updated - thanks Alex!<\\/li>\\n<li>German translations updated - thanks Daniel!<\\/li>\\n<\\/ul>\\n<p><strong>(17\\/10\\/2016) -\\u00a01.2.91<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Fix bug where navigation logo wasn\'t displaying when effect is set to None<\\/li>\\n<li>Menu Plus: Fix bug where mobile header javascript was showing up when it shouldn\'t<\\/li>\\n<li>Sections: Add Shortcodes Ultimate compatibility<\\/li>\\n<li>Page Header: Fix Italian translation<\\/li>\\n<li>Page Header: Only show metabox on public post types<\\/li>\\n<li>Page Header: Fully re-design metabox<\\/li>\\n<li>Page Header: Add padding unit option (px or %)<\\/li>\\n<li>Blog: Make excerpt length value update immediately in Customizer<\\/li>\\n<li>Blog: Improve masonry functionality<\\/li>\\n<li>Russian translations updated - massive thanks to Alexey!<\\/li>\\n<\\/ul>\\n<p><strong>(2\\/10\\/2016) - 1.2.90<\\/strong><\\/p>\\n<ul>\\n<li>Prevent direct access to all files<\\/li>\\n<li>All Czech translations updated (thanks Ondrej!)<\\/li>\\n<li>Copyright: Improve Customizer experience<\\/li>\\n<li>Sections: Completely re-designed and re-built Sections<\\/li>\\n<li>Sections: Section content is now saved into your default editor on update\\/save. This prevents theme-lock, meaning your content will still exist even if you remove Sections.<\\/li>\\n<li>Sections: Send to default editor button removed as the before removes the need for it<\\/li>\\n<li>Sections: Add bottom &amp; top padding unit option (px or %)<\\/li>\\n<li>Page Header: Add generate_page_header_video_loop filter to disable looping of the page header video<\\/li>\\n<li>Page Header: Add option to remove the page header from single posts<\\/li>\\n<li>Page Header: Make number only inputs only accepts numbers<\\/li>\\n<li>Page Header: Force page header above the content if merged option is set<\\/li>\\n<li>Page Header: Disable automatic check for background video posters if no image is set<\\/li>\\n<li>Page Header: Use featured image as background image if no page header image is set<\\/li>\\n<li>Spacing: Remove duplicate menu item height CSS<\\/li>\\n<li>Spacing: Make inputs number only<\\/li>\\n<li>Spacing: All options are now instant preview<\\/li>\\n<li>Blog: Make post image sizes and excerpt length inputs number only<\\/li>\\n<li>Blog: Force full width masonry items on mobile<\\/li>\\n<li>Blog: Show Blog panel even when we\'re not viewing the blog in the Customizer<\\/li>\\n<li>Menu Plus: Reduce space between menu toggle and search icon on mobile with menu logo enabled<\\/li>\\n<li>Menu Plus: Show navigation logo option and navigation logo position option even if sticky navigation isn\'t enabled<\\/li>\\n<li>Menu Plus: Optimize javascript and put it all in files instead of in wp_footer<\\/li>\\n<li>Menu Plus: Allow navigation logo to show in sidebar navigation causing a sidebar logo effect<\\/li>\\n<li>Menu Plus: Float mobile header to the right on RTL installations<\\/li>\\n<li>Typography: Add new filter: generate_typography_variants<\\/li>\\n<li>Typography: Make font size, weight and decoration instant preview<\\/li>\\n<li>Typography: Only show top 200 popular Google Fonts in Customizer (increases Customizer performance)<\\/li>\\n<li>Typography: generate_number_of_fonts filter added so you can choose how many fonts to include in the Customizer list<\\/li>\\n<li>Typography: Remove 2 database queries<\\/li>\\n<li>Typography: Add Segoe UI font to default list<\\/li>\\n<li>Typography: Revamp how Google fonts get their category and variants (increase front end performance)<\\/li>\\n<li>Colors: Make all colors instant preview<\\/li>\\n<li>Secondary Navigation: Colors are now instant preview<\\/li>\\n<li>Secondary Navigation: Typography font weight, transform and size are now instant preview<\\/li>\\n<li>Secondary Navigation: Layout options are now instant preview<\\/li>\\n<li>Hooks: Disable spell check in hook textareas<\\/li>\\n<li>Hooks: Fix floating box issue on RTL installations<\\/li>\\n<li>Backgrounds: Use default WordPress image uploader customizer control<\\/li>\\n<li>Customizer: All Customizer controls are now rendered in javascript\\/json - big +1 for performance<\\/li>\\n<\\/ul>\\n<p><strong>(7\\/23\\/2016) -\\u00a01.2.89<\\/strong><\\/p>\\n<ul>\\n<li>Fix translations<\\/li>\\n<li>GP Hooks: Add new filter: generate_hooks_capability - change the capability for users who can edit hooks<\\/li>\\n<li>Disable Elements: Remove metabox from attachment post type<\\/li>\\n<li>Page Header: Fix issue where merged header navigation colors weren\'t working<\\/li>\\n<li>Page Header: Remove metabox from the attachment post type<\\/li>\\n<li>Menu Plus: Fix sticky menu not unsticking if it\'s the very top element<\\/li>\\n<\\/ul>\\n<p><strong>(7\\/16\\/2016) -\\u00a01.2.88<\\/strong><\\/p>\\n<ul>\\n<li>GP Premium: Cut down unnecessary folders to prevent update failures on some servers<\\/li>\\n<li>Page Header: Add a new option in Advanced Settings: Place content behind header (sliders etc..)<\\/li>\\n<li>Page Header: Fix header and navigation alignment in vertical centered page header when contained<\\/li>\\n<li>Sections: Rename template file to shorter name<\\/li>\\n<li>Typography: Rename control file to shorter name<\\/li>\\n<li>Copyright: Fix\\/improve live preview of copyright in the Customizer<\\/li>\\n<li>Blog: Show the read more label setting for both excerpt and full content settings<\\/li>\\n<li>Menu Plus: Fix sticky menu stopping at the bottom of the Page Header<\\/li>\\n<li>Menu Plus: Improve sticky menu experience<\\/li>\\n<li>Menu Plus: Float sticky menu logo right when navigation is set to float left<\\/li>\\n<li>Secondary Navigation: Adjust z-index<\\/li>\\n<\\/ul>\\n<p><strong>(7\\/10\\/2016) -\\u00a01.2.87<\\/strong><\\/p>\\n<ul>\\n<li>Increase database sanitization\\/escaping and harden security throughout all add-ons<\\/li>\\n<li>Backgrounds: Place options into sections inside Background Images panel<\\/li>\\n<li>Blog: Add new filter to set the column count: generate_blog_get_column_count<\\/li>\\n<li>Blog: Add title tag to read more link<\\/li>\\n<li>Secondary Navigation: Fix spacing issue with dropdown menu arrow<\\/li>\\n<li>Secondary Navigation: Remove Secondary Navigation panel<\\/li>\\n<li>Secondary Navigation: Move sections into their applicable panels<\\/li>\\n<li>Secondary Navigation: Add RTL language support<\\/li>\\n<li>Spacing: Place options into sections inside Spacing panel<\\/li>\\n<li>Spacing: Add RTL support<\\/li>\\n<li>Copyright: Move copyright textarea into the Customizer<\\/li>\\n<li>Copyright: Swedish translation added - thanks Jamal!<\\/li>\\n<li>Page Header: Fix logo setting to work with new WordPress 4.5 custom_logo feature<\\/li>\\n<li>Page Header: Vastly improved merged header option<\\/li>\\n<li>Page Header: Move Blog Page Header panel into the Blog panel<\\/li>\\n<li>Sections: Fix bug where first paragraph wasn\'t being correct wrapped in &lt;p&gt; tag<\\/li>\\n<li>Menu Plus: Move options into Layout panel<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/29\\/2016) -\\u00a01.2.86<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Allow resizer to upscale images<\\/li>\\n<li>Page Header: Allow resizer to upscale images<\\/li>\\n<li>Sections: Fix issue with images enlarging in Sections<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/24\\/2016) -\\u00a01.2.85<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix cropping when Photon is being used<\\/li>\\n<li>Page Header: Fix cropping when Photon is being used<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/23\\/2016) -\\u00a01.2.84<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix bug where two columns appear briefly at 768px width<\\/li>\\n<li>Blog: Change image resizer to more lightweight option<\\/li>\\n<li>Blog: Fix uneven spacing at the bottom of blog posts in columns<\\/li>\\n<li>Sections: Apply the_content filter once to the whole sections page to avoid multiple sharing icons being added by plugins etc..<\\/li>\\n<li>Page Header: Change image resizer to more lightweight option<\\/li>\\n<li>Page Header: Add apply image sizes button to the Blog Page Header crop options<\\/li>\\n<li>Translations: Czech translations updated - thanks Ondrej!<\\/li>\\n<li>Translations: Polish translations updated - thanks Krzysztof!<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/5\\/2016) - 1.2.83<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix bug where full width post wasn\'t displaying in columns<\\/li>\\n<li>Blog: Add a check for the blog content customizer control in the theme to prevent warning<\\/li>\\n<li>Blog: Add button to apply post image sizes in the Customizer to prevent unnecessary images being created<\\/li>\\n<\\/ul>\\n<p><strong>(5\\/3\\/2016) -\\u00a01.2.82<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Improve masonry width logic<\\/li>\\n<li>Blog: Improve proportional image resizing<\\/li>\\n<li>Blog: Switch to a better image resizer<\\/li>\\n<li>Spacing: Add spacing for dropdown menu toggle and mobile items in the navigation<\\/li>\\n<li>Colors: Fix text-domain for \\\"Colors\\\" panel to allow it to be translated<\\/li>\\n<li>Colors: Add focus style to buttons<\\/li>\\n<li>Sections: Replace the_content filter with Sections specific filter to avoid plugins adding icons and other content into each section<\\/li>\\n<li>Page Header: Add background image as the video placeholder if it can\'t be loaded (mobile devices etc..)<\\/li>\\n<li>Page Header: Switch to a better image resizer<\\/li>\\n<li>Typography: Adjust label size in Typography sections in Customizer for longer translations<\\/li>\\n<li>Polish translations added - thanks, Paul!<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/24\\/2016) -\\u00a01.2.81<\\/strong><\\/p>\\n<ul>\\n<li>Page Header: Fix javascript bug in Safari<\\/li>\\n<\\/ul>\\n<p><strong>(3\\/23\\/2016) -\\u00a01.2.80<\\/strong><\\/p>\\n<ul>\\n<li>Page Header: Fix iOS bug with parallax background image<\\/li>\\n<li>Page Header: Move \\\"Appearance &gt; Blog Page Header\\\" to \\\"Customize &gt; Page Header &gt; Blog\\\"<\\/li>\\n<li>Page Header: Adjust proportional resizing<\\/li>\\n<li>Page Header: Add generate_page_header_featured_image filter to force usage of the featured image over the custom field<\\/li>\\n<li>Page Header: Add option to merge site header and page header with a transparent navigation<\\/li>\\n<li>Page Header: Add option to include a video background in your page header<\\/li>\\n<li>Page Header: Add option to replace your logo\\/header on individual pages\\/posts<\\/li>\\n<li>Page Header: Improve metabox saving to prevent empty values in the database<\\/li>\\n<li>Page Header: Minify parallax JS<\\/li>\\n<li>Typography: Add input fields to font sizes to manually adjust them without slider<\\/li>\\n<li>Typography: Adjust separators in Customizer<\\/li>\\n<li>Typography: Add mobile font sizes for the main title, H1 and H2<\\/li>\\n<li>Menu Plus: Adjust navigation width with container width in Customizer<\\/li>\\n<li>Menu Plus: Fix sticky navigation spacer width<\\/li>\\n<li>Menu Plus: Navigation float right aligns sticky menu items to the right<\\/li>\\n<li>Menu Plus: Add new dropdown arrows to slideout menu<\\/li>\\n<li>Menu Plus: New Feature: Mobile Header<\\/li>\\n<li>Menu Plus: Separate options into panels<\\/li>\\n<li>Menu Plus: Close slideout menu with escape key<\\/li>\\n<li>Secondary Nav: Fix separator spacing below secondary navigation in the widget area<\\/li>\\n<li>Secondary Nav: Add support for navigation click dropdown<\\/li>\\n<li>Secondary Nav: Minify CSS and JS<\\/li>\\n<li>Blog: Fix category\\/author page header when columns are set<\\/li>\\n<li>Blog: Remove generate_blog_activate_masonry function and bundle it in with generate_blog_get_masonry function<\\/li>\\n<li>Blog: Turn off masonry if we\'re on WooCommerce search results<\\/li>\\n<li>Blog: Turn off columns if we\'re on WooCommerce search results<\\/li>\\n<li>Blog: Minify CSS and JS<\\/li>\\n<li>Colors: Add focus styles to navigation<\\/li>\\n<li>Backgrounds: Add separators in Customizer<\\/li>\\n<li>Backgrounds: Fix doubling up background images in the content when One Container is set<\\/li>\\n<li>Spacing: Add separators in Customizer<\\/li>\\n<li>Sections: Improve editor handling when visual editor is turned off<\\/li>\\n<li>Sections: Use excerpt metabox on archives\\/blog if Sections is in use in single post<\\/li>\\n<li>Sections: Fix bug where archives\\/blog loses layout if most recent post is using Sections<\\/li>\\n<li>Sections: Minify CSS and JS<\\/li>\\n<li>Disable Elements: Improve metabox saving to prevent empty values in the database<\\/li>\\n<li>Italian translations added for all add-ons - thank you Roberto!<\\/li>\\n<li>German translations updated for all add-ons - thank you Daniel!<\\/li>\\n<\\/ul>\\n<p><strong>(12\\/22\\/2015) - 1.2.79<\\/strong><\\/p>\\n<ul>\\n<li>Spacing: Add function_exists in case GP theme isn\'t activated<\\/li>\\n<\\/ul>\\n<p><strong>(12\\/21\\/2015) - 1.2.78<\\/strong><\\/p>\\n<ul>\\n<li>Backgrounds: Fix bug where navigation background image was showing in sub-navigation as well<\\/li>\\n<li>Backgrounds: Optimize CSS<\\/li>\\n<li>Colors: Optimize CSS<\\/li>\\n<li>Secondary Nav: Remove unnecessary CSS from &lt;head&gt;<\\/li>\\n<li>Spacing: Optimize CSS<\\/li>\\n<li>Typography: Optimize CSS<\\/li>\\n<li>Menu Plus: Fix slideout menu glitch when menu item has # as URL<\\/li>\\n<li>Menu Plus: Improve sticky functionality and display<\\/li>\\n<li>Menu Plus: Update sticky menu width when navigation is container and layout is updated<\\/li>\\n<li>Menu Plus: Improve slideout menu transition<\\/li>\\n<li>Blog: Add filter to add post types for the masonry width metabox: generate_blog_masonry_metabox<\\/li>\\n<li>Blog: Add option to set posts as equal height columns<\\/li>\\n<li>Blog: Update masonry when layout is changed in Customizer<\\/li>\\n<li>Blog: Add safeguard in case people type Auto in post image sizes<\\/li>\\n<li>Sections: Add support for password protected pages and Sections<\\/li>\\n<li>Spacing: Remove widget padding if one container is set<\\/li>\\n<li>Spacing: Right and left content padding now affects content area when One Container is set<\\/li>\\n<li>Page Header: Fix proportional resizing<\\/li>\\n<li>Updater functionality improved<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/29\\/2015) - 1.2.77<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix warning when post image width is set without a height<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/27\\/2015) - 1.2.76<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Don\'t display sticky menu logo if sticky menu is disabled<\\/li>\\n<\\/ul>\\n<p><strong>(11\\/27\\/2015) - 1.2.75<\\/strong><\\/p>\\n<ul>\\n<li>Czech translations added to all add-ons - thanks Ondrej!<\\/li>\\n<li>Slovak translation added to GP Premium - thanks Jan!<\\/li>\\n<li>Move from email activation to license key activation<\\/li>\\n<li>Menu Plus: Add ability to add menu item with slider-exit class to exit the slideout menu<\\/li>\\n<li>Menu Plus: Add generate_after_slideout_navigation hook<\\/li>\\n<li>Menu Plus: Adjust mobile search item selector to include ability for more items to be added<\\/li>\\n<li>Menu Plus: Fix slideout menu on Windows phones<\\/li>\\n<li>Menu Plus: Reduce amount of CSS shown in the &lt;head&gt; section<\\/li>\\n<li>Blog: Use array for image resizer instead of string<\\/li>\\n<li>Blog: Show date and author on single post even if content title is hidden<\\/li>\\n<li>Hooks: Move before header hook content above navigation when set to above header<\\/li>\\n<li>Colors: Adjust mobile search item selector to include ability for more items to be added<\\/li>\\n<li>Colors: Reduce amount of CSS shown in the &lt;head&gt; section<\\/li>\\n<li>Spacing: Adjust mobile search item selector to include ability for more items to be added<\\/li>\\n<li>Spacing: Reduce amount of CSS shown in the &lt;head&gt; section<\\/li>\\n<li>Sections: Allow sidebars to display on with Sections if generate_sections_sidebars filter is set to true<\\/li>\\n<li>Sections: Make adjustment to ensure compatibility with PHP7<\\/li>\\n<li>Disable Elements: Disabling the site navigation also disbale the sticky navigation if Menu Plus is activated<\\/li>\\n<li>Typography: Reduce amount of CSS shown in the &lt;head&gt; section<\\/li>\\n<li>Backgrounds: Reduce amount of CSS shown in the &lt;head&gt; section<\\/li>\\n<li>Page Header: Reduce CSS shown in &lt;head&gt; section if there\'s no page header content<\\/li>\\n<li>Secondary Nav: Reduce amount of CSS shown in the &lt;head&gt; section<\\/li>\\n<\\/ul>\\n<p><strong>(10\\/30\\/2015) - 1.2.74<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Fix mobile menu overlap with search icon when sticky effect set to \\\"none\\\"<\\/li>\\n<\\/ul>\\n<p><strong>(10\\/29\\/2015) - 1.2.73<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Allow post image cropping to have proportional width based on height<\\/li>\\n<li>Blog: Hiding the date, author, categories, tags and comments link fully removes them (requires GP 1.3.18)<\\/li>\\n<li>Typography: Add font size controller for footer\\/copyright<\\/li>\\n<li>Page Header: Fix full screen issue when refreshing half way down the screen<\\/li>\\n<li>Colors: Fix missing placeholder text in Edge browser<\\/li>\\n<li>Colors: Adjust mobile search item selector<\\/li>\\n<li>Menu Plus: Change \\\"hamburger\\\" icon to close icon on slideout menu open<\\/li>\\n<li>Menu Plus: Fix bug where mobile only sticky menu was appear on desktop when set to fade<\\/li>\\n<li>Menu Plus: Fix background image issue when slideout menu is enabled<\\/li>\\n<li>Menu Plus: Add classes to &lt;body&gt; element for site logo in navigation\\/sticky navigation<\\/li>\\n<li>Menu Plus: Add styling for mobile search item<\\/li>\\n<li>Menu Plus: Replace slideout menu script with a more lightweight, efficient one<\\/li>\\n<li>Disable Elements: Disabling the headline\\/title fully removes it from the code (requires GP 1.3.18)<\\/li>\\n<li>Spacing: Add styling for mobile search item<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(10\\/3\\/2015) - 1.2.72<\\/strong><\\/p>\\n<ul>\\n<li>Blog: Fix masonry on tablet orientation change<\\/li>\\n<li>Blog: Fix masonry on search results page<\\/li>\\n<li>Menu Plus: Fix sticky menu bug when navigation is in sidebar<\\/li>\\n<li>Menu Plus: Remove empty javascript element if slideout menu is disabled<\\/li>\\n<li>Menu Plus: Fix sticky menu bug when mobile menu is toggled<\\/li>\\n<li>Menu Plus: Delay sticky script from initializing until all other scripts are done<\\/li>\\n<li>Page Header: Add microdata to page header image<\\/li>\\n<li>Spacing: Fix mobile search spacing<\\/li>\\n<li>Sections: Add generate_sections_default_padding_top and generate_sections_default_padding_bottom filters for the default padding<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(9\\/16\\/2015) - 1.2.71<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: Fix empty alert<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(9\\/14\\/2015) - 1.2.70<\\/strong><\\/p>\\n<ul>\\n<li>Menu Plus: German translation added (thank you, Daniel!)<\\/li>\\n<li>Disable Elements: Disable post image on single template if set<\\/li>\\n<li>Spacing: Adjust spacing for mobile search<\\/li>\\n<li>Typography: Range slider settings adjusted<\\/li>\\n<li>Sections: Fix Add Media button when in Text editor<\\/li>\\n<li>Menu Plus: Fix conflict with navigation search in mobile menu<\\/li>\\n<li>Page Header: Fix mobile bug on Chrome with full height page headers<\\/li>\\n<li>Menu Plus: Fix Secondary Navigation dropdown issue when slideout menu is enabled<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(8\\/24\\/2015) - 1.2.69<\\/strong><\\/p>\\n<ul>\\n<li>[!] Menu Plus: Sticky Menu Slide was showing up behind content<\\/li>\\n<li>[*] Menu Plus: Remove notices if GP isn\'t activated<\\/li>\\n<li>[*] Page Header: Remove notice if GP isn\'t activated<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(8\\/22\\/2015) - 1.2.68<\\/strong><\\/p>\\n<ul>\\n<li>[!] Blog: Remove masonry load more button if linked directly to last page<\\/li>\\n<li>[!] Sections: Fix issue with sections displaying on IE8<\\/li>\\n<li>[*] Sections: Add new filter to allow sections on any post type you like: generate_sections_post_types<\\/li>\\n<li>[+] Page Header: Add new filter to allow page header link to open in new tab: generate_page_header_target<\\/li>\\n<li>[!] Menu Plus: Fix error when using Jetpack\'s Mobile Theme<\\/li>\\n<li>[*] Menu Plus: Improve fade transition<\\/li>\\n<li>[!] Colors: Fix mobile menu text hover<\\/li>\\n<li>[+] GP Premium: Activate\\/Deactivate multiple add-ons at once<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(8\\/6\\/2015) - 1.2.67<\\/strong><\\/p>\\n<ul>\\n<li>[*] Disable Elements: Disable post image now works without Page Header being activated<\\/li>\\n<li>[!] Menu+: Fix bug where hidden navigation clone was conflicting with secondary navigation<\\/li>\\n<li>[*] Secondary Nav: Mobile menu toggle changed from &lt;h3&gt; to &lt;button&gt;<br \\/>\\n+ If you\'ve used h3.menu-toggle in any custom CSS, you\'ll need to adjust it (.menu-toggle is fine)<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(8\\/2\\/2015) - 1.2.66<\\/strong><\\/p>\\n<ul>\\n<li>[*] Menu+: Smoothen slideout transitions<\\/li>\\n<li>[+] Menu+: Add \\\"generate_menu_slideout_effect\\\" filter<\\/li>\\n<li>[+] Menu+: Add \\\"generate_menu_slideout_position\\\" filter<\\/li>\\n<li>[!] Menu+: Fix alignment issue with float right contained sticky menu<\\/li>\\n<li>[*] Menu+: Show sticky menu on mobile only, desktop only or both<\\/li>\\n<li>[*] Menu+: Various tweaks<\\/li>\\n<li>[+] Blog: Add jump to anchor when using read more tag<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(8\\/1\\/2015) - 1.2.65<\\/strong><\\/p>\\n<ul>\\n<li>[+] Menu Plus: Added to GP Premium<\\/li>\\n<li>[*] Blog: Run image resizer on front-end only<\\/li>\\n<li>[*] Page Header: Run image resizier on front-end only<\\/li>\\n<li>[*] Page Header: Run cmb2 only if it hasn\'t already been initialized<\\/li>\\n<li>[*] Blog: Remove float on floated post images on mobile<\\/li>\\n<li>[*] All: Email\\/add-on activation improved<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(7\\/13\\/2015) - 1.2.64<\\/strong><\\/p>\\n<ul>\\n<li>[*] Blog: If the read more input is empty, don\'t include markup in post<\\/li>\\n<li>[*] Blog: fix masonry horizontal scroll on mobile (no sidebars)<\\/li>\\n<li>[*] Blog: Fix post image (float left or right) margin on mobile<\\/li>\\n<li>[*] Secondary Nav: Adjust mobile breakpoint<\\/li>\\n<li>[!] Secondary Nav: Fix secondary navigation font bug<\\/li>\\n<li>[!] Typography: Fix weird Google Font rendering bug<\\/li>\\n<li>[!] Sections: Fix bug where paragraphs were being stripped<\\/li>\\n<li>[!] Sections: Fix shortcode bug<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(6\\/28\\/2015) - 1.2.63<\\/strong><\\/p>\\n<ul>\\n<li>[+] Typography + Spacing: Italian translations added (thanks, Roberto!!)<\\/li>\\n<li>[+] Allow shortcodes in text widgets<\\/li>\\n<li>[!] Typography: Fix bug where variants weren\'t registering<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(6\\/25\\/2015) - 1.2.62<\\/strong><\\/p>\\n<ul>\\n<li>[+] All add-ons - French translations updated (thanks, Philippe!!)<\\/li>\\n<li>[+] All add-ons - Russian translations added (thanks, Alexey!!)<\\/li>\\n<li>[*] Page Header: Improve fullscreen height and vertical center functionality<\\/li>\\n<li>[*] Secondary Nav: Wrap mobile menu in span<\\/li>\\n<li>[*] Sections: Fix some weird CSS styling in editor<\\/li>\\n<li>[*] Secondary Nav: Updated mobile breakpoint to 767px<\\/li>\\n<li>[+] Sections: Add generate_sections_parallax_speed filter to change the speed of parallax effect<\\/li>\\n<li>[+] Blog: Add new filter: generate_blog_activate_masonry - this checks whether we should activate masonry or not<\\/li>\\n<li>[+] Blog: Add code to allow Google Analtyics to track masonry load more as pageviews<\\/li>\\n<li>[+] Typography: Major update! Values changed to allow future Google Font additions\\/changes - please backup before updating.<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(5\\/20\\/2015) - 1.2.61<\\/strong><\\/p>\\n<ul>\\n<li>[!] Sections: Fix spacing bug while using one container<\\/li>\\n<li>[!] Typography: Fix subset issue<\\/li>\\n<li>[*] Translation files updated<\\/li>\\n<li>[+] Blog: Add class to read more paragraph container<\\/li>\\n<li>[!] Secondary Nav: Fix background image upload controls<\\/li>\\n<li>[*] Blog: Fix broken translation strings<\\/li>\\n<li>[+] Sections: Add ability to use Sections on posts<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(5\\/16\\/2015) - 1.2.6<\\/strong><\\/p>\\n<ul>\\n<li>[*] Page Header: Performance improvements<\\/li>\\n<li>[*] Page Header: GP_IMAGE_RESIZER constant added to give option to disable automatic thumbnail regeneration<\\/li>\\n<li>[x] Page Header: Crop position removed for now<\\/li>\\n<li>[*] French translations updated (thanks, Philippe!!)<\\/li>\\n<li>[!] Copyright: Fix bug where copyright was being removed when email was saved<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(5\\/13\\/2015) - 1.2.5<\\/strong><\\/p>\\n<p>[!] Hooks: Fix bug where Inside Content Container wasn\'t showing up<\\/p>\\n<p>----<\\/p>\\n<p><strong>(5\\/6\\/2015) - 1.2.4<\\/strong><\\/p>\\n<ul>\\n<li>[!] Page Header: Add function_exists() functions to admin-options.php to stop error when standalone and GP Premium are activated.<\\/li>\\n<li>[!] Sections: Fix bug where sidebar padding wasn\'t working with one container set<\\/li>\\n<li>[*] Sections: Improve editor when visual editor disabled<\\/li>\\n<li>[!] Page Header: Fix bug in parallax.js<\\/li>\\n<li>[*] German language updated through all add-ons (thanks, Daniel!!)<\\/li>\\n<li>[*] Blog: Disallow masonry on any post types but the core \\\"post\\\" type<\\/li>\\n<li>[!] Sections: Remove background color on sections pages when one container is set.<\\/li>\\n<li>[!] Page Header: Remove empty space on attachment page<\\/li>\\n<li>[*] Import\\/Export: Delete GP Hooks specific import - no longer needed<\\/li>\\n<li>[+] Hooks: Add option to disable individual hooks<\\/li>\\n<li>[+] Hooks: Move options to one table - reduces queries<\\/li>\\n<li>[+] Typography: Widget content size option added<\\/li>\\n<li>[!] Sections: Fix bug dealing with sidebar layouts<\\/li>\\n<li>[*] Email activation performance increased<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(4\\/14\\/2015) - 1.2.3<\\/strong><\\/p>\\n<ul>\\n<li>[!] Sections: Fix language path<\\/li>\\n<li>[*] All add-ons: Update language files<\\/li>\\n<li>[!] Sections: Remove wp_enqueue_media() call which was breaking featured image<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(4\\/12\\/2015) - 1.2.2<\\/strong><\\/p>\\n<ul>\\n<li>[!] Spacing: Fix bug where sidebar padding wasn\'t working with one container set<\\/li>\\n<li>[!] Sections: Fix error relating to old version of PHP<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(4\\/11\\/2015) - 1.2.1<\\/strong><\\/p>\\n<ul>\\n<li>[!] Sections: Fix bug where HTML was being stripped<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(4\\/9\\/2015) - 1.2<\\/strong><\\/p>\\n<ul>\\n<li>[+] German translations added (thank you Daniel!!)<\\/li>\\n<li>[*] Page Header &amp; Blog: remove bfi_thumb and use WordPress resizer (reduced memory usage)<\\/li>\\n<li>[*] Typography: Group typography options into areas<\\/li>\\n<li>[+] Typography: Comic Sans MS added to font list<\\/li>\\n<li>[*] Colors: French translation updated<\\/li>\\n<li>[*] Spacing: French translation updated<\\/li>\\n<li>[*] Blog: French translation updated<\\/li>\\n<li>[*] Copyright: French translation updated<\\/li>\\n<li>[+] Copyright: Save button added below textarea<\\/li>\\n<li>[+] Typography: French translation added<\\/li>\\n<li>[*] Secondary Nav: Mobile breakpoint removed from mobile.css and added to enqueue function<\\/li>\\n<li>[+] Sections: Introducing Generate Sections<\\/li>\\n<li>[!] Page Header: Fix bug where add paragraphs doesn\'t work on Blog Header<\\/li>\\n<li>[+] Import\\/Export: Ability to import\\/export GP Hooks added<\\/li>\\n<li>[+] Hooks: Ability to import\\/export GP Hooks added<\\/li>\\n<li>[*] Page Header: Disable parallax on mobile<\\/li>\\n<li>[!] Blog: Show next\\/prev links even when everything else is hidden<\\/li>\\n<li>[*] Blog: Masonry improved<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(1\\/28\\/2015) - 1.1<\\/strong><\\/p>\\n<ul>\\n<li>[+] Spacing: French translation added<\\/li>\\n<li>[+] Copyright: French translation added<\\/li>\\n<li>[+] Blog: French translation added<\\/li>\\n<li>[*] Blog: Choosing medium as the masonry block width gives items 50% width.<\\/li>\\n<li>[*] Blog: Masonry re-written to perform better<\\/li>\\n<li>[+] Page Header: New options page added (Appearance &gt; Blog Page Header) - add a page header to your blog<\\/li>\\n<li>[+] Page Header: Better parallax effect added to page header background<\\/li>\\n<li>[!] Page Header: Resizing image turned it to PNG and increased file size<\\/li>\\n<li>[+] Page Header: Added option to enable full screen background image<\\/li>\\n<li>[+] Page Header: Added option to vertically center content<\\/li>\\n<li>[+] Colors: Color options added for H1, H2 and H3 elements<\\/li>\\n<li>[+] Typography: Font fallback set - use generate_fallback_font filter to change it<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(12\\/15\\/2014) - 1.0<\\/strong><\\/p>\\n<ul>\\n<li>[*] Blog: Adjustments made to alignment CSS to work with W3 Total Cache<\\/li>\\n<li>[+] Typography: More fonts added<\\/li>\\n<li>[+] Typography: Filter added to subset<\\/li>\\n<li>[+] Colors: French translation added<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(11\\/17\\/2014) - 0.9<\\/strong><\\/p>\\n<ul>\\n<li>[!] Blog: Applied post image position to images using Page Header addon<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(11\\/17\\/2014) - 0.8<\\/strong><\\/p>\\n<ul>\\n<li>[*] Blog: Hiding post images works again<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(11\\/16\\/2014) - 0.7<\\/strong><\\/p>\\n<ul>\\n<li>[+] Page Header: Option to add background color<\\/li>\\n<li>[*] Page Header: Background image no longer required for other options<\\/li>\\n<li>[*] Page Header: Image resizer now uses BFI Thumb<\\/li>\\n<li>[+] Page Header: Option to move post header below the title<\\/li>\\n<li>[*] Secondary Nav: Mobile breakpoint increased to include tablets<\\/li>\\n<li>[!] Secondary Nav: Fix bug causing Trebuchet MS not to work<\\/li>\\n<li>[!] Colors: Navigation current text color wasn\'t working while navigation floating right<\\/li>\\n<li>[*] Colors: Change color of placeholder text to text color<\\/li>\\n<li>[!] Secondary Nav: Remove secondary navigation element if no menu is set<\\/li>\\n<li>[+] Blog: Add option to hide categories<\\/li>\\n<li>[+] Blog: Choose alignment of post image<\\/li>\\n<li>[+] Blog: Choose size of post image<\\/li>\\n<li>[+] Hooks: Added inside main content container hook<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(10\\/27\\/2014) - 0.6<\\/strong><\\/p>\\n<ul>\\n<li>[!] Typography: Fix bug with non Google fonts calling to Google<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(10\\/20\\/2014) - 0.5<\\/strong><\\/p>\\n<ul>\\n<li>[!] Disable Elements: Fix bug applying latest post setting to blog<\\/li>\\n<li>[*] Backgrounds: Upload buttons now use Media Library<\\/li>\\n<li>[!] Blog: Fix masonry spacing issues<\\/li>\\n<li>[*] Page Header: Code cleanup<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(10\\/11\\/2014) - 0.4<\\/strong><\\/p>\\n<ul>\\n<li>[+] Copyright: Allow shortcodes in Copyright<\\/li>\\n<li>[*] Copyright: Changed copyright field to textarea<\\/li>\\n<li>[!] Blog: Fix mobile bug in masonry blog on iPhone<\\/li>\\n<li>[*] Spacing: Change separator spacing from padding to margin<\\/li>\\n<li>[*] Translation files updated<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(10\\/2\\/2014) - 0.3<\\/strong><\\/p>\\n<ul>\\n<li>[!] Blog: Not able to hide author on single posts<\\/li>\\n<li>[!] Backgrounds: Background images double in content if One Container is set<\\/li>\\n<li>[+] GP Hooks: Add After Footer Widgets to GP Hooks<\\/li>\\n<li>[+] Secondary Nav: Option to change \\\"Menu\\\" label on mobile secondary navigation<\\/li>\\n<li>[!] Page Header: buddypress fix<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(9\\/17\\/2014) - 0.2<\\/strong><\\/p>\\n<ul>\\n<li>[*] Make Google Fonts call more robust<\\/li>\\n<li>[!] Fix secondary navigation link color when floating right<\\/li>\\n<li>[+] Background image options added to secondary navigation<\\/li>\\n<li>[+] File structures cleaned up<\\/li>\\n<li>[+] Masonry width and most recent post masonry width options added<\\/li>\\n<\\/ul>\\n<p>----<\\/p>\\n<p><strong>(9\\/7\\/2014) - 0.1<\\/strong><\\/p>\\n<ul>\\n<li>Initial Release<\\/li>\\n<\\/ul>\\n\"]}\";}','no'),(1686,'_transient_product-transient-version','1572887972','yes'),(1707,'jetpack-twitter-cards-site-tag','','yes'),(158,'recently_activated','a:0:{}','yes'),(159,'_fl_builder_version','2.2.3.3','no'),(235,'generate_blog_settings','a:26:{s:14:\"excerpt_length\";s:2:\"55\";s:9:\"read_more\";s:9:\"Read more\";s:7:\"masonry\";b:0;s:13:\"masonry_width\";s:6:\"width2\";s:25:\"masonry_most_recent_width\";s:6:\"width4\";s:17:\"masonry_load_more\";s:6:\"+ More\";s:15:\"masonry_loading\";s:10:\"Loading...\";s:10:\"post_image\";b:1;s:19:\"post_image_position\";s:0:\"\";s:20:\"post_image_alignment\";s:25:\"post-image-aligned-center\";s:16:\"post_image_width\";s:0:\"\";s:17:\"post_image_height\";s:0:\"\";s:4:\"date\";b:1;s:6:\"author\";b:1;s:10:\"categories\";b:1;s:4:\"tags\";b:1;s:8:\"comments\";b:1;s:13:\"column_layout\";i:0;s:7:\"columns\";s:2:\"50\";s:15:\"featured_column\";i:0;s:11:\"single_date\";b:1;s:13:\"single_author\";b:1;s:17:\"single_categories\";b:1;s:11:\"single_tags\";b:1;s:26:\"single_post_image_position\";s:14:\"inside-content\";s:24:\"page_post_image_position\";s:13:\"above-content\";}','yes'),(43421,'jetpack_sync_full__send_started','1534984328','no'),(43422,'jetpack_sync_full__constants_sent','1','no'),(43423,'jetpack_sync_full__functions_sent','1','no'),(43424,'jetpack_sync_full__options_sent','1','no'),(43425,'jetpack_sync_full__users_sent','1','no'),(43426,'jetpack_sync_full__finished','1534984328','no'),(185,'bsf_skip_author','1','no'),(171,'_fl_builder_enabled_icons','a:4:{i:0;s:12:\"font-awesome\";i:1;s:16:\"foundation-icons\";i:2;s:9:\"dashicons\";i:3;s:14:\"ultimate-icons\";}','yes'),(172,'_uabb_enabled_icons','1','yes'),(173,'bsf_local_transient','1572883677','yes'),(176,'brainstrom_products','a:1:{s:7:\"plugins\";a:1:{s:4:\"uabb\";a:32:{s:2:\"id\";s:4:\"uabb\";s:4:\"name\";s:34:\"Ultimate Addons for Beaver Builder\";s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:10:\"short_name\";s:0:\"\";s:11:\"description\";s:132:\"UABB is a premium extension for Beaver Builder that adds 55+ modules, 200+ templates and works on top of any Beaver Builder Package.\";s:7:\"version\";s:6:\"1.18.1\";s:12:\"download_url\";s:0:\"\";s:12:\"version_beta\";s:0:\"\";s:17:\"download_url_beta\";s:0:\"\";s:6:\"tested\";s:5:\"5.2.4\";s:14:\"privacy_policy\";s:127:\"https://www.ultimatebeaver.com/privacy-policy/?utm_source=uabb-pro-dashboard&utm_medium=privacy-policy&utm_campaign=get-license\";s:16:\"terms_conditions\";s:139:\"https://www.ultimatebeaver.com/terms-and-conditions/?utm_source=uabb-pro-dashboard&utm_medium=terms-and-conditions&utm_campaign=get-license\";s:12:\"purchase_url\";s:120:\"https://www.ultimatebeaver.com/pricing/?utm_source=uabb-pro-dashboard&utm_medium=license-screen&utm_campaign=get-license\";s:13:\"changelog_url\";s:117:\"https://www.ultimatebeaver.com/changelog/?utm_source=uabb-pro-dashboard&utm_medium=changelog&utm_campaign=get-license\";s:4:\"type\";s:6:\"plugin\";s:8:\"in_house\";s:4:\"true\";s:9:\"on_market\";s:5:\"false\";s:15:\"is_product_free\";s:5:\"false\";s:14:\"has-extensions\";s:5:\"false\";s:13:\"support_forum\";s:134:\"https://www.ultimatebeaver.com/support/submit-a-ticket/?utm_source=uabb-pro-dashboard&utm_medium=support-form&utm_campaign=get-license\";s:25:\"after_registration_action\";s:0:\"\";s:13:\"product_image\";s:70:\"//support.brainstormforce.com/wp-content/uploads/2018/10/uabb-logo.svg\";s:32:\"show_on_register_licence_listing\";s:5:\"false\";s:15:\"show_on_listing\";s:5:\"false\";s:13:\"is_support_on\";s:4:\"true\";s:14:\"envato_item_id\";s:0:\"\";s:8:\"template\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:6:\"remote\";s:6:\"1.23.1\";s:12:\"purchase_key\";s:32:\"2a31b5f9af91c65f652fb66708df7fc3\";s:6:\"status\";s:14:\"not-registered\";s:7:\"message\";s:31:\"License successfully validated!\";s:12:\"product_name\";s:34:\"Ultimate Addons for Beaver Builder\";}}}','yes'),(178,'bsf_local_transient_bundled','1572483890','yes'),(183,'bsf_skip_braisntorm_menu','1','no'),(193,'generate_settings','a:48:{s:10:\"hide_title\";b:1;s:12:\"hide_tagline\";b:1;s:4:\"logo\";s:0:\"\";s:11:\"retina_logo\";s:0:\"\";s:13:\"top_bar_width\";s:4:\"full\";s:19:\"top_bar_inner_width\";s:9:\"contained\";s:17:\"top_bar_alignment\";s:5:\"right\";s:15:\"container_width\";s:4:\"1100\";s:21:\"header_layout_setting\";s:12:\"fluid-header\";s:18:\"header_inner_width\";s:9:\"contained\";s:21:\"nav_alignment_setting\";s:4:\"left\";s:24:\"header_alignment_setting\";s:4:\"left\";s:18:\"nav_layout_setting\";s:9:\"fluid-nav\";s:15:\"nav_inner_width\";s:9:\"contained\";s:20:\"nav_position_setting\";s:16:\"nav-below-header\";s:17:\"nav_dropdown_type\";s:5:\"hover\";s:10:\"nav_search\";s:7:\"disable\";s:22:\"content_layout_setting\";s:19:\"separate-containers\";s:14:\"layout_setting\";s:10:\"no-sidebar\";s:19:\"blog_layout_setting\";s:10:\"no-sidebar\";s:21:\"single_layout_setting\";s:10:\"no-sidebar\";s:12:\"post_content\";s:4:\"full\";s:21:\"footer_layout_setting\";s:12:\"fluid-footer\";s:18:\"footer_inner_width\";s:9:\"contained\";s:21:\"footer_widget_setting\";s:1:\"3\";s:20:\"footer_bar_alignment\";s:5:\"right\";s:11:\"back_to_top\";s:0:\"\";s:16:\"background_color\";s:7:\"#efefef\";s:10:\"text_color\";s:7:\"#3a3a3a\";s:10:\"link_color\";s:7:\"#1e73be\";s:16:\"link_color_hover\";s:7:\"#000000\";s:18:\"link_color_visited\";s:0:\"\";s:23:\"font_awesome_essentials\";b:0;s:17:\"dynamic_css_cache\";b:0;s:13:\"smooth_scroll\";b:0;s:9:\"font_body\";s:12:\"System Stack\";s:16:\"body_font_weight\";s:6:\"normal\";s:19:\"body_font_transform\";s:4:\"none\";s:14:\"body_font_size\";s:2:\"17\";s:16:\"body_line_height\";s:3:\"1.5\";s:16:\"paragraph_margin\";s:3:\"1.5\";s:17:\"header_text_color\";s:7:\"#222222\";s:16:\"site_title_color\";s:7:\"#222222\";s:18:\"site_tagline_color\";s:7:\"#222222\";s:20:\"site_title_font_size\";i:62;s:22:\"site_tagline_font_size\";i:29;s:15:\"font_site_title\";s:10:\"Montserrat\";s:11:\"combine_css\";b:0;}','yes'),(192,'generate_dynamic_css_cached_version','2.0.2','yes'),(194,'generate_migration_settings','a:8:{s:31:\"font_awesome_essentials_updated\";s:4:\"true\";s:22:\"skip_dynamic_css_cache\";s:4:\"true\";s:20:\"default_font_updated\";s:4:\"true\";s:23:\"blog_visibility_updated\";s:4:\"true\";s:22:\"footer_padding_updated\";s:4:\"true\";s:30:\"mobile_content_padding_updated\";s:4:\"true\";s:25:\"blog_post_content_preview\";s:4:\"true\";s:11:\"combine_css\";s:4:\"done\";}','yes'),(195,'generate_update_core_typography','true','yes'),(196,'theme_mods_generatepress','a:5:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:19;}s:24:\"font_site_title_category\";s:10:\"sans-serif\";s:24:\"font_site_title_variants\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:11:\"custom_logo\";i:211;}','yes'),(197,'current_theme','GeneratePress','yes'),(198,'theme_switched','','yes'),(199,'theme_switched_via_customizer','','yes'),(200,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(201,'customize_stashed_theme_mods','a:1:{s:15:\"twentyseventeen\";a:6:{s:23:\"nav_menu_locations[top]\";a:5:{s:15:\"starter_content\";b:1;s:5:\"value\";i:-1;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2018-02-03 22:14:03\";}s:26:\"nav_menu_locations[social]\";a:5:{s:15:\"starter_content\";b:1;s:5:\"value\";i:-5;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2018-02-03 22:14:03\";}s:7:\"panel_1\";a:5:{s:15:\"starter_content\";b:1;s:5:\"value\";i:31;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2018-02-03 22:14:03\";}s:7:\"panel_2\";a:5:{s:15:\"starter_content\";b:1;s:5:\"value\";i:28;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2018-02-03 22:14:03\";}s:7:\"panel_3\";a:5:{s:15:\"starter_content\";b:1;s:5:\"value\";i:30;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2018-02-03 22:14:03\";}s:7:\"panel_4\";a:5:{s:15:\"starter_content\";b:1;s:5:\"value\";i:29;s:4:\"type\";s:9:\"theme_mod\";s:7:\"user_id\";i:1;s:17:\"date_modified_gmt\";s:19:\"2018-02-03 22:14:03\";}}}','no'),(205,'gen_premium_license_key','bf6525e090501c85d32251cd1851bc08','yes'),(206,'gen_premium_license_key_status','valid','yes'),(207,'generate_package_backgrounds','activated','yes'),(208,'generate_package_blog','activated','yes'),(209,'generate_package_colors','activated','yes'),(210,'generate_package_copyright','activated','yes'),(211,'generate_package_disable_elements','activated','yes'),(212,'generate_package_hooks','activated','yes'),(213,'generate_package_import_export','activated','yes'),(214,'generate_package_menu_plus','activated','yes'),(215,'generate_package_page_header','activated','yes'),(216,'generate_package_secondary_nav','activated','yes'),(217,'generate_package_sections','activated','yes'),(218,'generate_package_spacing','activated','yes'),(219,'generate_package_typography','activated','yes'),(1713,'jetpack_active_plan','a:8:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:12:\"product_name\";s:12:\"Jetpack Free\";s:18:\"product_name_short\";s:4:\"Free\";s:7:\"expired\";b:0;s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:8:\"features\";a:2:{s:6:\"active\";a:1:{i:0;s:7:\"akismet\";}s:9:\"available\";a:10:{s:7:\"akismet\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";}s:18:\"vaultpress-backups\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:15:\"simple-payments\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:7:\"support\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}}}}','yes'),(1215,'woocommerce_store_address','15903 prairie ave, Apt 4','yes'),(1216,'woocommerce_store_address_2','Apt 4','yes'),(1217,'woocommerce_store_city','lawndale','yes'),(1218,'woocommerce_default_country','US:CA','yes'),(1219,'woocommerce_store_postcode','90260','yes'),(1220,'woocommerce_allowed_countries','all','yes'),(1221,'woocommerce_all_except_countries','','yes'),(1222,'woocommerce_specific_allowed_countries','','yes'),(1223,'woocommerce_ship_to_countries','','yes'),(1224,'woocommerce_specific_ship_to_countries','','yes'),(1225,'woocommerce_default_customer_address','geolocation','yes'),(1226,'woocommerce_calc_taxes','yes','yes'),(1227,'woocommerce_currency','USD','yes'),(1228,'woocommerce_currency_pos','left','yes'),(1229,'woocommerce_price_thousand_sep',',','yes'),(1230,'woocommerce_price_decimal_sep','.','yes'),(1231,'woocommerce_price_num_decimals','2','yes'),(1232,'woocommerce_shop_page_id','82','yes'),(1233,'woocommerce_cart_redirect_after_add','no','yes'),(1234,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(1235,'woocommerce_weight_unit','oz','yes'),(1236,'woocommerce_dimension_unit','in','yes'),(1237,'woocommerce_enable_reviews','yes','yes'),(1238,'woocommerce_review_rating_verification_label','yes','no'),(1239,'woocommerce_review_rating_verification_required','no','no'),(1240,'woocommerce_enable_review_rating','yes','yes'),(1241,'woocommerce_review_rating_required','yes','no'),(1242,'woocommerce_manage_stock','yes','yes'),(1243,'woocommerce_hold_stock_minutes','60','no'),(1244,'woocommerce_notify_low_stock','yes','no'),(1245,'woocommerce_notify_no_stock','yes','no'),(1246,'woocommerce_stock_email_recipient','admin@remoterangler.com','no'),(1247,'woocommerce_notify_low_stock_amount','2','no'),(1248,'woocommerce_notify_no_stock_amount','0','yes'),(1249,'woocommerce_hide_out_of_stock_items','no','yes'),(1250,'woocommerce_stock_format','','yes'),(1251,'woocommerce_file_download_method','force','no'),(1252,'woocommerce_downloads_require_login','no','no'),(1253,'woocommerce_downloads_grant_access_after_payment','yes','no'),(1254,'woocommerce_prices_include_tax','no','yes'),(1255,'woocommerce_tax_based_on','base','yes'),(1256,'woocommerce_shipping_tax_class','','yes'),(1257,'woocommerce_tax_round_at_subtotal','no','yes'),(1259,'woocommerce_tax_display_shop','excl','yes'),(1260,'woocommerce_tax_display_cart','incl','yes'),(1261,'woocommerce_price_display_suffix','','yes'),(1262,'woocommerce_tax_total_display','single','no'),(1263,'woocommerce_enable_shipping_calc','yes','no'),(1264,'woocommerce_shipping_cost_requires_address','no','no'),(1265,'woocommerce_ship_to_destination','billing','no'),(1266,'woocommerce_shipping_debug_mode','no','no'),(1267,'woocommerce_enable_coupons','yes','yes'),(1268,'woocommerce_calc_discounts_sequentially','no','no'),(1269,'woocommerce_enable_guest_checkout','yes','no'),(1270,'woocommerce_force_ssl_checkout','no','yes'),(1271,'woocommerce_unforce_ssl_checkout','no','yes'),(1272,'woocommerce_cart_page_id','83','yes'),(1273,'woocommerce_checkout_page_id','84','yes'),(1274,'woocommerce_terms_page_id','','no'),(1275,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(1276,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(1277,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(1278,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(1279,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(1280,'woocommerce_myaccount_page_id','85','yes'),(1281,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(1282,'woocommerce_enable_myaccount_registration','no','no'),(1283,'woocommerce_enable_checkout_login_reminder','yes','no'),(1284,'woocommerce_registration_generate_username','no','no'),(1285,'woocommerce_registration_generate_password','no','no'),(1286,'woocommerce_myaccount_orders_endpoint','orders','yes'),(1287,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(1288,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(1289,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(1290,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(1291,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(1292,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(1293,'woocommerce_logout_endpoint','customer-logout','yes'),(1294,'woocommerce_email_from_name','Remote Rangler','no'),(1295,'woocommerce_email_from_address','admin@remoterangler.com','no'),(1296,'woocommerce_email_header_image','','no'),(1297,'woocommerce_email_footer_text','{site_title}','no'),(1298,'woocommerce_email_base_color','#96588a','no'),(1299,'woocommerce_email_background_color','#f7f7f7','no'),(1300,'woocommerce_email_body_background_color','#ffffff','no'),(1301,'woocommerce_email_text_color','#3c3c3c','no'),(1302,'woocommerce_api_enabled','yes','yes'),(1303,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(1304,'current_theme_supports_woocommerce','yes','yes'),(1305,'woocommerce_queue_flush_rewrite_rules','no','yes'),(120499,'_transient_timeout_wpseo_link_table_inaccessible','1587891197','no'),(120500,'_transient_wpseo_link_table_inaccessible','0','no'),(120501,'_transient_timeout_wpseo_meta_table_inaccessible','1587891197','no'),(120502,'_transient_wpseo_meta_table_inaccessible','0','no'),(1751,'product_cat_children','a:0:{}','yes'),(1308,'default_product_cat','17','yes'),(1329,'woocommerce_meta_box_errors','a:0:{}','yes'),(1330,'woocommerce_product_type','physical','yes'),(1313,'woocommerce_admin_notices','a:3:{i:0;s:6:\"update\";i:1;s:20:\"no_secure_connection\";i:2;s:8:\"wc_admin\";}','yes'),(1314,'_transient_woocommerce_webhook_ids','a:0:{}','yes'),(1315,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1316,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1317,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1318,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1319,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1320,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1321,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1322,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1323,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1324,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1325,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1326,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1331,'woocommerce_allow_tracking','no','yes'),(1352,'wc_ppec_version','1.6.17','yes'),(1335,'woocommerce_stripe_settings','a:23:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:20:\"Credit Card (Stripe)\";s:11:\"description\";s:37:\"Pay with your credit card via Stripe.\";s:8:\"testmode\";s:2:\"no\";s:20:\"test_publishable_key\";s:0:\"\";s:15:\"test_secret_key\";s:0:\"\";s:15:\"publishable_key\";s:32:\"pk_live_rwwEYn8wZ2NViusMXf7sgxJJ\";s:10:\"secret_key\";s:32:\"sk_live_gH085CpXW1IAkhfbXmaKopiV\";s:14:\"inline_cc_form\";s:2:\"no\";s:20:\"statement_descriptor\";s:0:\"\";s:7:\"capture\";s:3:\"yes\";s:14:\"three_d_secure\";s:3:\"yes\";s:15:\"stripe_checkout\";s:2:\"no\";s:21:\"stripe_checkout_image\";s:0:\"\";s:27:\"stripe_checkout_description\";s:0:\"\";s:15:\"payment_request\";s:3:\"yes\";s:27:\"payment_request_button_type\";s:3:\"buy\";s:28:\"payment_request_button_theme\";s:4:\"dark\";s:29:\"payment_request_button_height\";s:2:\"44\";s:11:\"saved_cards\";s:2:\"no\";s:7:\"logging\";s:2:\"no\";s:5:\"email\";s:22:\"Joewillett44@gmail.com\";s:20:\"apple_pay_domain_set\";s:2:\"no\";}','yes'),(1337,'woocommerce_ppec_paypal_settings','a:25:{s:7:\"enabled\";s:3:\"yes\";s:16:\"reroute_requests\";s:3:\"yes\";s:5:\"email\";s:19:\"mawillett@yahoo.com\";s:5:\"title\";s:23:\"PayPal Express Checkout\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:11:\"environment\";s:4:\"live\";s:11:\"api_subject\";s:19:\"mawillett@yahoo.com\";s:19:\"sandbox_api_subject\";s:19:\"mawillett@yahoo.com\";s:10:\"brand_name\";s:14:\"Remote Rangler\";s:11:\"button_size\";s:5:\"large\";s:21:\"cart_checkout_enabled\";s:3:\"yes\";s:12:\"mark_enabled\";s:2:\"no\";s:14:\"logo_image_url\";s:0:\"\";s:16:\"header_image_url\";s:0:\"\";s:10:\"page_style\";s:0:\"\";s:12:\"landing_page\";s:5:\"Login\";s:14:\"credit_enabled\";s:2:\"no\";s:34:\"checkout_on_single_product_enabled\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:15:\"require_billing\";s:2:\"no\";s:20:\"require_phone_number\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:16:\"instant_payments\";s:2:\"no\";s:26:\"subtotal_mismatch_behavior\";s:3:\"add\";}','yes'),(1338,'woocommerce_cheque_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(1339,'woocommerce_bacs_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(1340,'woocommerce_cod_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(222,'generate_hooks','a:37:{s:20:\"generate_wp_head_php\";b:0;s:7:\"updated\";s:4:\"true\";s:16:\"generate_wp_head\";b:0;s:26:\"generate_before_header_php\";b:0;s:22:\"generate_before_header\";b:0;s:34:\"generate_before_header_content_php\";b:0;s:30:\"generate_before_header_content\";b:0;s:33:\"generate_after_header_content_php\";b:0;s:29:\"generate_after_header_content\";b:0;s:25:\"generate_after_header_php\";b:0;s:21:\"generate_after_header\";b:0;s:32:\"generate_before_main_content_php\";b:0;s:28:\"generate_before_main_content\";b:0;s:27:\"generate_before_content_php\";b:0;s:23:\"generate_before_content\";b:0;s:31:\"generate_after_entry_header_php\";b:0;s:27:\"generate_after_entry_header\";b:0;s:26:\"generate_after_content_php\";b:0;s:22:\"generate_after_content\";b:0;s:41:\"generate_before_right_sidebar_content_php\";b:0;s:37:\"generate_before_right_sidebar_content\";b:0;s:40:\"generate_after_right_sidebar_content_php\";b:0;s:36:\"generate_after_right_sidebar_content\";b:0;s:40:\"generate_before_left_sidebar_content_php\";b:0;s:36:\"generate_before_left_sidebar_content\";b:0;s:39:\"generate_after_left_sidebar_content_php\";b:0;s:35:\"generate_after_left_sidebar_content\";b:0;s:26:\"generate_before_footer_php\";b:0;s:22:\"generate_before_footer\";b:0;s:33:\"generate_after_footer_widgets_php\";b:0;s:29:\"generate_after_footer_widgets\";b:0;s:34:\"generate_before_footer_content_php\";b:0;s:30:\"generate_before_footer_content\";b:0;s:33:\"generate_after_footer_content_php\";b:0;s:29:\"generate_after_footer_content\";b:0;s:22:\"generate_wp_footer_php\";b:0;s:18:\"generate_wp_footer\";b:0;}','yes'),(223,'generate_update_premium_typography','true','yes'),(224,'generate_update_secondary_typography','true','yes'),(255,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:22:\"joewillett44@gmail.com\";s:7:\"version\";s:5:\"5.2.4\";s:9:\"timestamp\";i:1571113488;}','no'),(5582,'brainstrom_bundled_products','a:0:{}','yes'),(330,'uabb_old_modules','updated','yes'),(331,'_uabb_saved_version','1.18.1','yes'),(332,'_uabb_cloud_templats','a:2:{s:14:\"page-templates\";a:118:{s:21:\"site-1-template-17674\";a:7:{s:2:\"id\";s:21:\"site-1-template-17674\";s:4:\"name\";s:6:\"Lawyer\";s:5:\"image\";s:119:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/07/law-template-screenshot-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-17674.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:53:\"https://templates.ultimatebeaver.com/template/lawyer/\";}s:21:\"site-1-template-17668\";a:7:{s:2:\"id\";s:21:\"site-1-template-17668\";s:4:\"name\";s:9:\"Dietitian\";s:5:\"image\";s:105:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/07/Dietitian-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-17668.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:56:\"https://templates.ultimatebeaver.com/template/dietitian/\";}s:21:\"site-1-template-17649\";a:7:{s:2:\"id\";s:21:\"site-1-template-17649\";s:4:\"name\";s:19:\"Photography Website\";s:5:\"image\";s:128:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/07/Photography-Portfolio-Screenshot-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-17649.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:66:\"https://templates.ultimatebeaver.com/template/photography-website/\";}s:21:\"site-1-template-17384\";a:7:{s:2:\"id\";s:21:\"site-1-template-17384\";s:4:\"name\";s:11:\"Coffee Shop\";s:5:\"image\";s:107:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/07/Coffee-Shop-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-17384.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:58:\"https://templates.ultimatebeaver.com/template/coffee-shop/\";}s:21:\"site-1-template-17379\";a:7:{s:2:\"id\";s:21:\"site-1-template-17379\";s:4:\"name\";s:18:\"Mobile Application\";s:5:\"image\";s:114:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/07/Mobile-Application-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-17379.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:65:\"https://templates.ultimatebeaver.com/template/mobile-application/\";}s:21:\"site-1-template-17354\";a:7:{s:2:\"id\";s:21:\"site-1-template-17354\";s:4:\"name\";s:20:\"Online Jewelry Store\";s:5:\"image\";s:109:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/07/Jewelry-Store-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-17354.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:67:\"https://templates.ultimatebeaver.com/template/online-jewelry-store/\";}s:21:\"site-1-template-17069\";a:7:{s:2:\"id\";s:21:\"site-1-template-17069\";s:4:\"name\";s:4:\"Yoga\";s:5:\"image\";s:100:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/06/Yoga-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-17069.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:53:\"https://templates.ultimatebeaver.com/template/yoga-2/\";}s:21:\"site-1-template-17068\";a:7:{s:2:\"id\";s:21:\"site-1-template-17068\";s:4:\"name\";s:16:\"SEO or Marketing\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/06/SEO-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-17068.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:63:\"https://templates.ultimatebeaver.com/template/seo-or-marketing/\";}s:21:\"site-1-template-17066\";a:7:{s:2:\"id\";s:21:\"site-1-template-17066\";s:4:\"name\";s:7:\"Dentist\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/06/Dentist-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-17066.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/dentist/\";}s:21:\"site-1-template-16591\";a:7:{s:2:\"id\";s:21:\"site-1-template-16591\";s:4:\"name\";s:15:\"Personal Resume\";s:5:\"image\";s:111:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/06/personal-resume-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-16591.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:62:\"https://templates.ultimatebeaver.com/template/personal-resume/\";}s:21:\"site-1-template-16586\";a:7:{s:2:\"id\";s:21:\"site-1-template-16586\";s:4:\"name\";s:19:\"Automotive Services\";s:5:\"image\";s:109:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/06/car-service01-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-16586.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:66:\"https://templates.ultimatebeaver.com/template/automotive-services/\";}s:21:\"site-1-template-16585\";a:7:{s:2:\"id\";s:21:\"site-1-template-16585\";s:4:\"name\";s:16:\"Insurance Agency\";s:5:\"image\";s:105:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/06/Insurance-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-16585.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:63:\"https://templates.ultimatebeaver.com/template/insurance-agency/\";}s:21:\"site-1-template-16279\";a:7:{s:2:\"id\";s:21:\"site-1-template-16279\";s:4:\"name\";s:21:\"Internal Product Page\";s:5:\"image\";s:112:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/internal-product-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-16279.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:63:\"https://templates.ultimatebeaver.com/template/internal-product/\";}s:21:\"site-1-template-16272\";a:7:{s:2:\"id\";s:21:\"site-1-template-16272\";s:4:\"name\";s:17:\"Confirmation Page\";s:5:\"image\";s:110:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/confirmation-free-img-1-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-16272.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:59:\"https://templates.ultimatebeaver.com/template/confirmation/\";}s:21:\"site-1-template-16255\";a:7:{s:2:\"id\";s:21:\"site-1-template-16255\";s:4:\"name\";s:10:\"Web Agency\";s:5:\"image\";s:114:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/web-agency-feature-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-16255.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/web-agency/\";}s:21:\"site-1-template-16246\";a:7:{s:2:\"id\";s:21:\"site-1-template-16246\";s:4:\"name\";s:24:\"Professional Real Estate\";s:5:\"image\";s:107:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/Real-Estate-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-16246.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:60:\"https://templates.ultimatebeaver.com/template/real-estate-3/\";}s:21:\"site-1-template-16213\";a:7:{s:2:\"id\";s:21:\"site-1-template-16213\";s:4:\"name\";s:7:\"Charity\";s:5:\"image\";s:104:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/Charity1-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-16213.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/charity/\";}s:21:\"site-1-template-15958\";a:7:{s:2:\"id\";s:21:\"site-1-template-15958\";s:4:\"name\";s:13:\"Travel Offers\";s:5:\"image\";s:111:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/travels-feature-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15958.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/travels/\";}s:21:\"site-1-template-15940\";a:7:{s:2:\"id\";s:21:\"site-1-template-15940\";s:4:\"name\";s:19:\"Agency Service Page\";s:5:\"image\";s:110:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/agency-service-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15940.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:61:\"https://templates.ultimatebeaver.com/template/agency-service/\";}s:21:\"site-1-template-15645\";a:7:{s:2:\"id\";s:21:\"site-1-template-15645\";s:4:\"name\";s:12:\"Multipurpose\";s:5:\"image\";s:119:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/Lead-Generation-Guide-2-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15645.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:59:\"https://templates.ultimatebeaver.com/template/multipurpose/\";}s:21:\"site-1-template-15641\";a:7:{s:2:\"id\";s:21:\"site-1-template-15641\";s:4:\"name\";s:13:\"Online Portal\";s:5:\"image\";s:106:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/Job-Portal-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15641.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:60:\"https://templates.ultimatebeaver.com/template/online-portal/\";}s:21:\"site-1-template-15638\";a:7:{s:2:\"id\";s:21:\"site-1-template-15638\";s:4:\"name\";s:15:\"Product Release\";s:5:\"image\";s:111:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/product-release-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15638.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:62:\"https://templates.ultimatebeaver.com/template/product-release/\";}s:21:\"site-1-template-15635\";a:7:{s:2:\"id\";s:21:\"site-1-template-15635\";s:4:\"name\";s:14:\"Thank You Page\";s:5:\"image\";s:108:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/confirmation-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15635.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:56:\"https://templates.ultimatebeaver.com/template/thank-you/\";}s:21:\"site-1-template-15632\";a:7:{s:2:\"id\";s:21:\"site-1-template-15632\";s:4:\"name\";s:20:\"Fitness and Work-out\";s:5:\"image\";s:104:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/work-out-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15632.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:55:\"https://templates.ultimatebeaver.com/template/work-out/\";}s:21:\"site-1-template-15624\";a:7:{s:2:\"id\";s:21:\"site-1-template-15624\";s:4:\"name\";s:7:\"Fitness\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/505-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15624.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/fitness/\";}s:21:\"site-1-template-15621\";a:7:{s:2:\"id\";s:21:\"site-1-template-15621\";s:4:\"name\";s:11:\"Lead Magnet\";s:5:\"image\";s:109:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/build-website-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15621.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:58:\"https://templates.ultimatebeaver.com/template/lead-magnet/\";}s:21:\"site-1-template-15617\";a:7:{s:2:\"id\";s:21:\"site-1-template-15617\";s:4:\"name\";s:24:\"Professional Consultants\";s:5:\"image\";s:105:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/Architect-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15617.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:58:\"https://templates.ultimatebeaver.com/template/consultants/\";}s:21:\"site-1-template-15613\";a:7:{s:2:\"id\";s:21:\"site-1-template-15613\";s:4:\"name\";s:16:\"Attractive Offer\";s:5:\"image\";s:109:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/Gift-Boutique-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15613.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:53:\"https://templates.ultimatebeaver.com/template/offers/\";}s:21:\"site-1-template-15610\";a:7:{s:2:\"id\";s:21:\"site-1-template-15610\";s:4:\"name\";s:14:\"Local Business\";s:5:\"image\";s:105:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/02/builder-1-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15610.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:61:\"https://templates.ultimatebeaver.com/template/local-business/\";}s:21:\"site-1-template-15363\";a:7:{s:2:\"id\";s:21:\"site-1-template-15363\";s:4:\"name\";s:14:\"After Download\";s:5:\"image\";s:110:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/After-Download-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15363.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:61:\"https://templates.ultimatebeaver.com/template/after-download/\";}s:21:\"site-1-template-15276\";a:7:{s:2:\"id\";s:21:\"site-1-template-15276\";s:4:\"name\";s:11:\"Real Estate\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/516-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15276.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:58:\"https://templates.ultimatebeaver.com/template/real-estate/\";}s:21:\"site-1-template-15059\";a:7:{s:2:\"id\";s:21:\"site-1-template-15059\";s:4:\"name\";s:7:\"Seminar\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/Seminar-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15059.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/seminar/\";}s:21:\"site-1-template-15032\";a:7:{s:2:\"id\";s:21:\"site-1-template-15032\";s:4:\"name\";s:22:\"Travel and Hospitality\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/551-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15032.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:58:\"https://templates.ultimatebeaver.com/template/hospitality/\";}s:21:\"site-1-template-15018\";a:7:{s:2:\"id\";s:21:\"site-1-template-15018\";s:4:\"name\";s:10:\"Conference\";s:5:\"image\";s:107:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/568-feature-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15018.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/conference/\";}s:21:\"site-1-template-15011\";a:7:{s:2:\"id\";s:21:\"site-1-template-15011\";s:4:\"name\";s:10:\"E-learning\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/535-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-15011.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/e-learning/\";}s:21:\"site-1-template-14994\";a:7:{s:2:\"id\";s:21:\"site-1-template-14994\";s:4:\"name\";s:12:\"Registration\";s:5:\"image\";s:108:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/Registration-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14994.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:59:\"https://templates.ultimatebeaver.com/template/registration/\";}s:21:\"site-1-template-14991\";a:7:{s:2:\"id\";s:21:\"site-1-template-14991\";s:4:\"name\";s:20:\"Introduce a Software\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/552-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14991.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:55:\"https://templates.ultimatebeaver.com/template/software/\";}s:21:\"site-1-template-14985\";a:7:{s:2:\"id\";s:21:\"site-1-template-14985\";s:4:\"name\";s:18:\"Event Registration\";s:5:\"image\";s:114:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/Event-Registration-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14985.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:65:\"https://templates.ultimatebeaver.com/template/event-registration/\";}s:21:\"site-1-template-14984\";a:7:{s:2:\"id\";s:21:\"site-1-template-14984\";s:4:\"name\";s:11:\"Offer Ebook\";s:5:\"image\";s:112:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/website-tutorial-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14984.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:58:\"https://templates.ultimatebeaver.com/template/offer-ebook/\";}s:21:\"site-1-template-14979\";a:7:{s:2:\"id\";s:21:\"site-1-template-14979\";s:4:\"name\";s:22:\"Professional Portfolio\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/539-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14979.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:56:\"https://templates.ultimatebeaver.com/template/portfolio/\";}s:21:\"site-1-template-14978\";a:7:{s:2:\"id\";s:21:\"site-1-template-14978\";s:4:\"name\";s:5:\"Event\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/543-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14978.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:52:\"https://templates.ultimatebeaver.com/template/event/\";}s:21:\"site-1-template-14970\";a:7:{s:2:\"id\";s:21:\"site-1-template-14970\";s:4:\"name\";s:13:\"Online Course\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/538-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14970.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:60:\"https://templates.ultimatebeaver.com/template/online-course/\";}s:21:\"site-1-template-14969\";a:7:{s:2:\"id\";s:21:\"site-1-template-14969\";s:4:\"name\";s:15:\"Seasonal Offers\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/554-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14969.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:62:\"https://templates.ultimatebeaver.com/template/seasonal-offers/\";}s:21:\"site-1-template-14901\";a:7:{s:2:\"id\";s:21:\"site-1-template-14901\";s:4:\"name\";s:12:\"Product page\";s:5:\"image\";s:108:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/product-page-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14901.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:59:\"https://templates.ultimatebeaver.com/template/product-page/\";}s:21:\"site-1-template-14895\";a:7:{s:2:\"id\";s:21:\"site-1-template-14895\";s:4:\"name\";s:13:\"Health Clinic\";s:5:\"image\";s:117:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/health-clinic-feature-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14895.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:60:\"https://templates.ultimatebeaver.com/template/health-clinic/\";}s:21:\"site-1-template-14884\";a:7:{s:2:\"id\";s:21:\"site-1-template-14884\";s:4:\"name\";s:16:\"Beauty Treatment\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/563-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14884.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:63:\"https://templates.ultimatebeaver.com/template/beauty-treatment/\";}s:21:\"site-1-template-14876\";a:7:{s:2:\"id\";s:21:\"site-1-template-14876\";s:4:\"name\";s:19:\"Ebook Download page\";s:5:\"image\";s:110:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/Ebook-Download-free-img-400x293.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14876.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:61:\"https://templates.ultimatebeaver.com/template/ebook-download/\";}s:21:\"site-1-template-14862\";a:7:{s:2:\"id\";s:21:\"site-1-template-14862\";s:4:\"name\";s:15:\"Wedding Website\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/Wedding-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14862.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/wedding/\";}s:21:\"site-1-template-14809\";a:7:{s:2:\"id\";s:21:\"site-1-template-14809\";s:4:\"name\";s:7:\"Tourism\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/564-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14809.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/tourism/\";}s:21:\"site-1-template-14801\";a:7:{s:2:\"id\";s:21:\"site-1-template-14801\";s:4:\"name\";s:15:\"Creative Agency\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/529-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14801.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:62:\"https://templates.ultimatebeaver.com/template/creative-agency/\";}s:21:\"site-1-template-14757\";a:7:{s:2:\"id\";s:21:\"site-1-template-14757\";s:4:\"name\";s:10:\"Book Store\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/502-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14757.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/book-store/\";}s:21:\"site-1-template-14745\";a:7:{s:2:\"id\";s:21:\"site-1-template-14745\";s:4:\"name\";s:18:\"Financial Services\";s:5:\"image\";s:114:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/Financial-Services-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14745.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:65:\"https://templates.ultimatebeaver.com/template/financial-services/\";}s:21:\"site-1-template-14734\";a:7:{s:2:\"id\";s:21:\"site-1-template-14734\";s:4:\"name\";s:15:\"App or Software\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/527-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14734.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:50:\"https://templates.ultimatebeaver.com/template/app/\";}s:21:\"site-1-template-14728\";a:7:{s:2:\"id\";s:21:\"site-1-template-14728\";s:4:\"name\";s:17:\"Multipurpose Page\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/555-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14728.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:61:\"https://templates.ultimatebeaver.com/template/multipurpose-2/\";}s:21:\"site-1-template-14718\";a:7:{s:2:\"id\";s:21:\"site-1-template-14718\";s:4:\"name\";s:3:\"Spa\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/561-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14718.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:50:\"https://templates.ultimatebeaver.com/template/spa/\";}s:21:\"site-1-template-14715\";a:7:{s:2:\"id\";s:21:\"site-1-template-14715\";s:4:\"name\";s:23:\"Product or Service page\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/537-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14715.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/product/\";}s:21:\"site-1-template-14711\";a:7:{s:2:\"id\";s:21:\"site-1-template-14711\";s:4:\"name\";s:11:\"Free Report\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/545-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14711.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:58:\"https://templates.ultimatebeaver.com/template/free-report/\";}s:21:\"site-1-template-14675\";a:7:{s:2:\"id\";s:21:\"site-1-template-14675\";s:4:\"name\";s:18:\"Product Free Trial\";s:5:\"image\";s:109:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/Product-Trial-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14675.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:60:\"https://templates.ultimatebeaver.com/template/product-trial/\";}s:21:\"site-1-template-14671\";a:7:{s:2:\"id\";s:21:\"site-1-template-14671\";s:4:\"name\";s:9:\"Marketing\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/562-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14671.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:56:\"https://templates.ultimatebeaver.com/template/marketing/\";}s:21:\"site-1-template-14631\";a:7:{s:2:\"id\";s:21:\"site-1-template-14631\";s:4:\"name\";s:11:\"Food Offers\";s:5:\"image\";s:107:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/food-offers-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14631.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:58:\"https://templates.ultimatebeaver.com/template/food-offers/\";}s:21:\"site-1-template-14589\";a:7:{s:2:\"id\";s:21:\"site-1-template-14589\";s:4:\"name\";s:15:\"Pre-launch Page\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/512-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14589.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/pre-launch/\";}s:21:\"site-1-template-14509\";a:7:{s:2:\"id\";s:21:\"site-1-template-14509\";s:4:\"name\";s:15:\"Online Training\";s:5:\"image\";s:111:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/Online-Training-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14509.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:62:\"https://templates.ultimatebeaver.com/template/online-training/\";}s:21:\"site-1-template-14506\";a:7:{s:2:\"id\";s:21:\"site-1-template-14506\";s:4:\"name\";s:4:\"Blog\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/518-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14506.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:51:\"https://templates.ultimatebeaver.com/template/blog/\";}s:21:\"site-1-template-14497\";a:7:{s:2:\"id\";s:21:\"site-1-template-14497\";s:4:\"name\";s:14:\"Beauty Parlour\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/508-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14497.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:61:\"https://templates.ultimatebeaver.com/template/beauty-parlour/\";}s:21:\"site-1-template-14423\";a:7:{s:2:\"id\";s:21:\"site-1-template-14423\";s:4:\"name\";s:19:\"Blog offering Ebook\";s:5:\"image\";s:101:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/ebook-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14423.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/blog-ebook/\";}s:21:\"site-1-template-14351\";a:7:{s:2:\"id\";s:21:\"site-1-template-14351\";s:4:\"name\";s:12:\"Service Page\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2017/01/Service-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14351.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/service/\";}s:21:\"site-1-template-14223\";a:7:{s:2:\"id\";s:21:\"site-1-template-14223\";s:4:\"name\";s:13:\"Special Offer\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/12/tourist-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14223.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:60:\"https://templates.ultimatebeaver.com/template/special-offer/\";}s:21:\"site-1-template-14189\";a:7:{s:2:\"id\";s:21:\"site-1-template-14189\";s:4:\"name\";s:11:\"Coming soon\";s:5:\"image\";s:105:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/12/subscribe-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14189.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:58:\"https://templates.ultimatebeaver.com/template/coming-soon/\";}s:21:\"site-1-template-14130\";a:7:{s:2:\"id\";s:21:\"site-1-template-14130\";s:4:\"name\";s:16:\"Coming Soon Page\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/12/510-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14130.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:60:\"https://templates.ultimatebeaver.com/template/coming-soon-2/\";}s:21:\"site-1-template-14110\";a:7:{s:2:\"id\";s:21:\"site-1-template-14110\";s:4:\"name\";s:27:\"Introduce Product / Service\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/12/webinar-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14110.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:64:\"https://templates.ultimatebeaver.com/template/introduce-product/\";}s:21:\"site-1-template-14058\";a:7:{s:2:\"id\";s:21:\"site-1-template-14058\";s:4:\"name\";s:10:\"Free Ebook\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/12/506-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14058.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/free-ebook/\";}s:21:\"site-1-template-14016\";a:7:{s:2:\"id\";s:21:\"site-1-template-14016\";s:4:\"name\";s:10:\"Restaurant\";s:5:\"image\";s:106:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/12/restaurant-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-14016.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/restaurant/\";}s:21:\"site-1-template-13939\";a:7:{s:2:\"id\";s:21:\"site-1-template-13939\";s:4:\"name\";s:11:\"Watch Store\";s:5:\"image\";s:107:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/12/watch-store-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-13939.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:58:\"https://templates.ultimatebeaver.com/template/watch-store/\";}s:21:\"site-1-template-13927\";a:7:{s:2:\"id\";s:21:\"site-1-template-13927\";s:4:\"name\";s:19:\"Subscription Signup\";s:5:\"image\";s:100:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/12/5111-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-13927.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:66:\"https://templates.ultimatebeaver.com/template/subscription-signup/\";}s:21:\"site-1-template-13925\";a:7:{s:2:\"id\";s:21:\"site-1-template-13925\";s:4:\"name\";s:16:\"Yoga and Fitness\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/12/503-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-13925.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:51:\"https://templates.ultimatebeaver.com/template/yoga/\";}s:21:\"site-1-template-13924\";a:7:{s:2:\"id\";s:21:\"site-1-template-13924\";s:4:\"name\";s:15:\"E-book or Guide\";s:5:\"image\";s:99:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/12/513-free-img-400x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-13924.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:53:\"https://templates.ultimatebeaver.com/template/e-book/\";}s:21:\"site-1-template-12269\";a:7:{s:2:\"id\";s:21:\"site-1-template-12269\";s:4:\"name\";s:10:\"Contact 06\";s:5:\"image\";s:106:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/contact-06-free-img-530x606.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12269.dat\";s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/contact-06/\";}s:21:\"site-1-template-12267\";a:7:{s:2:\"id\";s:21:\"site-1-template-12267\";s:4:\"name\";s:8:\"About 02\";s:5:\"image\";s:104:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/about-02-free-img-530x606.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12267.dat\";s:4:\"tags\";a:1:{i:0;s:5:\"about\";}s:11:\"preview_url\";s:55:\"https://templates.ultimatebeaver.com/template/about-02/\";}s:21:\"site-1-template-12265\";a:7:{s:2:\"id\";s:21:\"site-1-template-12265\";s:4:\"name\";s:7:\"Team 04\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/team-04-free-img-530x568.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12265.dat\";s:4:\"tags\";a:1:{i:0;s:5:\"about\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/team-04/\";}s:21:\"site-1-template-12263\";a:7:{s:2:\"id\";s:21:\"site-1-template-12263\";s:4:\"name\";s:10:\"Join Us 04\";s:5:\"image\";s:106:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Join-us-04-free-img-530x644.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12263.dat\";s:4:\"tags\";a:1:{i:0;s:7:\"Join Us\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/join-us-04/\";}s:21:\"site-1-template-12261\";a:7:{s:2:\"id\";s:21:\"site-1-template-12261\";s:4:\"name\";s:10:\"Join Us 03\";s:5:\"image\";s:106:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Join-us-03-free-img-530x606.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12261.dat\";s:4:\"tags\";a:1:{i:0;s:7:\"Join Us\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/join-us-03/\";}s:21:\"site-1-template-12259\";a:7:{s:2:\"id\";s:21:\"site-1-template-12259\";s:4:\"name\";s:10:\"Join Us 02\";s:5:\"image\";s:106:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Join-us-02-free-img-530x606.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12259.dat\";s:4:\"tags\";a:1:{i:0;s:7:\"Join Us\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/join-us-02/\";}s:21:\"site-1-template-12257\";a:7:{s:2:\"id\";s:21:\"site-1-template-12257\";s:4:\"name\";s:10:\"Join Us 01\";s:5:\"image\";s:106:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Join-us-01-free-img-530x644.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12257.dat\";s:4:\"tags\";a:1:{i:0;s:7:\"Join Us\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/join-us-01/\";}s:21:\"site-1-template-12255\";a:7:{s:2:\"id\";s:21:\"site-1-template-12255\";s:4:\"name\";s:10:\"Contact 05\";s:5:\"image\";s:106:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Contact-05-free-img-530x606.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12255.dat\";s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/contact-05/\";}s:21:\"site-1-template-12253\";a:7:{s:2:\"id\";s:21:\"site-1-template-12253\";s:4:\"name\";s:10:\"Contact 04\";s:5:\"image\";s:106:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/contact-04-free-img-530x568.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12253.dat\";s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/contact-04/\";}s:21:\"site-1-template-12251\";a:7:{s:2:\"id\";s:21:\"site-1-template-12251\";s:4:\"name\";s:10:\"Contact 03\";s:5:\"image\";s:106:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/contact-03-free-img-530x568.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12251.dat\";s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/contact-03/\";}s:21:\"site-1-template-12249\";a:7:{s:2:\"id\";s:21:\"site-1-template-12249\";s:4:\"name\";s:10:\"Contact 02\";s:5:\"image\";s:106:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/contact-02-free-img-530x568.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12249.dat\";s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/contact-02/\";}s:21:\"site-1-template-12247\";a:7:{s:2:\"id\";s:21:\"site-1-template-12247\";s:4:\"name\";s:10:\"Contact 01\";s:5:\"image\";s:106:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/contact-01-free-img-530x606.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12247.dat\";s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:11:\"preview_url\";s:57:\"https://templates.ultimatebeaver.com/template/contact-01/\";}s:21:\"site-1-template-12245\";a:7:{s:2:\"id\";s:21:\"site-1-template-12245\";s:4:\"name\";s:7:\"FAQs 02\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/FAQs-02-free-img-530x628.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12245.dat\";s:4:\"tags\";a:1:{i:0;s:4:\"FAQs\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/faqs-02/\";}s:21:\"site-1-template-12243\";a:7:{s:2:\"id\";s:21:\"site-1-template-12243\";s:4:\"name\";s:7:\"FAQs 03\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/FAQs-03-free-img-530x492.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12243.dat\";s:4:\"tags\";a:1:{i:0;s:4:\"FAQs\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/faqs-03/\";}s:21:\"site-1-template-12241\";a:7:{s:2:\"id\";s:21:\"site-1-template-12241\";s:4:\"name\";s:7:\"FAQs 01\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/FAQs-01-free-img-530x326.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12241.dat\";s:4:\"tags\";a:1:{i:0;s:4:\"FAQs\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/faqs-01/\";}s:21:\"site-1-template-12239\";a:7:{s:2:\"id\";s:21:\"site-1-template-12239\";s:4:\"name\";s:12:\"Offerings 01\";s:5:\"image\";s:108:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Offerings-01-free-img-530x606.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12239.dat\";s:4:\"tags\";a:1:{i:0;s:23:\"Features &amp; Services\";}s:11:\"preview_url\";s:59:\"https://templates.ultimatebeaver.com/template/offerings-01/\";}s:21:\"site-1-template-12237\";a:7:{s:2:\"id\";s:21:\"site-1-template-12237\";s:4:\"name\";s:11:\"Features 01\";s:5:\"image\";s:107:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Features-01-free-img-530x697.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12237.dat\";s:4:\"tags\";a:1:{i:0;s:23:\"Features &amp; Services\";}s:11:\"preview_url\";s:58:\"https://templates.ultimatebeaver.com/template/features-01/\";}s:21:\"site-1-template-12235\";a:7:{s:2:\"id\";s:21:\"site-1-template-12235\";s:4:\"name\";s:11:\"Services 01\";s:5:\"image\";s:107:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Services-01-free-img-530x681.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12235.dat\";s:4:\"tags\";a:1:{i:0;s:23:\"Features &amp; Services\";}s:11:\"preview_url\";s:58:\"https://templates.ultimatebeaver.com/template/services-01/\";}s:21:\"site-1-template-12233\";a:7:{s:2:\"id\";s:21:\"site-1-template-12233\";s:4:\"name\";s:25:\"Lead Generation Funnel 01\";s:5:\"image\";s:121:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Lead-generation-funnel-01-free-img-530x477.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12233.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:72:\"https://templates.ultimatebeaver.com/template/lead-generation-funnel-01/\";}s:21:\"site-1-template-12231\";a:7:{s:2:\"id\";s:21:\"site-1-template-12231\";s:4:\"name\";s:24:\"Business Landing Page 03\";s:5:\"image\";s:121:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Bussiness-landing-page-03-free-img-530x606.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12231.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:71:\"https://templates.ultimatebeaver.com/template/business-landing-page-03/\";}s:21:\"site-1-template-12229\";a:7:{s:2:\"id\";s:21:\"site-1-template-12229\";s:4:\"name\";s:24:\"Business Landing Page 02\";s:5:\"image\";s:121:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Bussiness-landing-page-02-free-img-530x644.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12229.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:71:\"https://templates.ultimatebeaver.com/template/business-landing-page-02/\";}s:21:\"site-1-template-12227\";a:7:{s:2:\"id\";s:21:\"site-1-template-12227\";s:4:\"name\";s:24:\"Business Landing Page 01\";s:5:\"image\";s:121:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Bussiness-landing-page-01-free-img-530x681.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12227.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:71:\"https://templates.ultimatebeaver.com/template/business-landing-page-01/\";}s:21:\"site-1-template-12225\";a:7:{s:2:\"id\";s:21:\"site-1-template-12225\";s:4:\"name\";s:24:\"Features Landing Page 01\";s:5:\"image\";s:120:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Features-Landing-page-01-free-img-530x697.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12225.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:71:\"https://templates.ultimatebeaver.com/template/features-landing-page-01/\";}s:21:\"site-1-template-12223\";a:7:{s:2:\"id\";s:21:\"site-1-template-12223\";s:4:\"name\";s:18:\"Plans & Pricing 01\";s:5:\"image\";s:112:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/Plans-pricing-01-free-img-530x613.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12223.dat\";s:4:\"tags\";a:1:{i:0;s:13:\"landing pages\";}s:11:\"preview_url\";s:63:\"https://templates.ultimatebeaver.com/template/plans-pricing-01/\";}s:21:\"site-1-template-12219\";a:7:{s:2:\"id\";s:21:\"site-1-template-12219\";s:4:\"name\";s:7:\"Team 03\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/team-03-free-img-530x568.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12219.dat\";s:4:\"tags\";a:1:{i:0;s:5:\"about\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/team-03/\";}s:21:\"site-1-template-12217\";a:7:{s:2:\"id\";s:21:\"site-1-template-12217\";s:4:\"name\";s:7:\"Team 02\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/team-02-free-img-530x606.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12217.dat\";s:4:\"tags\";a:1:{i:0;s:5:\"about\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/team-02/\";}s:21:\"site-1-template-12215\";a:7:{s:2:\"id\";s:21:\"site-1-template-12215\";s:4:\"name\";s:7:\"Team 01\";s:5:\"image\";s:103:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/team-01-free-img-530x606.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12215.dat\";s:4:\"tags\";a:1:{i:0;s:5:\"about\";}s:11:\"preview_url\";s:54:\"https://templates.ultimatebeaver.com/template/team-01/\";}s:21:\"site-1-template-12213\";a:7:{s:2:\"id\";s:21:\"site-1-template-12213\";s:4:\"name\";s:8:\"About 01\";s:5:\"image\";s:104:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/about-01-free-img-530x606.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12213.dat\";s:4:\"tags\";a:1:{i:0;s:5:\"about\";}s:11:\"preview_url\";s:55:\"https://templates.ultimatebeaver.com/template/about-01/\";}s:21:\"site-1-template-12084\";a:7:{s:2:\"id\";s:21:\"site-1-template-12084\";s:4:\"name\";s:8:\"About 05\";s:5:\"image\";s:104:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/about-05-free-img-530x606.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:99:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-template-12084.dat\";s:4:\"tags\";a:1:{i:0;s:5:\"about\";}s:11:\"preview_url\";s:55:\"https://templates.ultimatebeaver.com/template/about-05/\";}s:18:\"site-6-template-53\";a:7:{s:2:\"id\";s:18:\"site-6-template-53\";s:4:\"name\";s:10:\"Veterinary\";s:5:\"image\";s:114:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/6/2016/10/veterinary-free-img-311x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-6-template-53.dat\";s:4:\"tags\";a:1:{i:0;s:10:\"Home Pages\";}s:11:\"preview_url\";s:68:\"https://templates.ultimatebeaver.com/veterinary/template/veterinary/\";}s:18:\"site-7-template-34\";a:7:{s:2:\"id\";s:18:\"site-7-template-34\";s:4:\"name\";s:13:\"Paediatrician\";s:5:\"image\";s:117:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/7/2016/10/paediatrician-free-img-311x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-7-template-34.dat\";s:4:\"tags\";a:1:{i:0;s:10:\"Home Pages\";}s:11:\"preview_url\";s:74:\"https://templates.ultimatebeaver.com/paediatrician/template/paediatrician/\";}s:19:\"site-9-template-400\";a:7:{s:2:\"id\";s:19:\"site-9-template-400\";s:4:\"name\";s:11:\"Services 02\";s:5:\"image\";s:115:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/9/2016/09/services-02-free-img-329x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:97:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-9-template-400.dat\";s:4:\"tags\";a:1:{i:0;s:23:\"Features &amp; Services\";}s:11:\"preview_url\";s:67:\"https://templates.ultimatebeaver.com/gardener/template/services-02/\";}s:19:\"site-9-template-391\";a:7:{s:2:\"id\";s:19:\"site-9-template-391\";s:4:\"name\";s:8:\"Gardener\";s:5:\"image\";s:112:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/9/2016/09/gardener-free-img-329x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:97:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-9-template-391.dat\";s:4:\"tags\";a:1:{i:0;s:10:\"Home Pages\";}s:11:\"preview_url\";s:64:\"https://templates.ultimatebeaver.com/gardener/template/gardener/\";}s:19:\"site-9-template-355\";a:7:{s:2:\"id\";s:19:\"site-9-template-355\";s:4:\"name\";s:7:\"FAQs 04\";s:5:\"image\";s:111:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/9/2016/09/FAQs-04-free-img-400x371.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:97:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-9-template-355.dat\";s:4:\"tags\";a:1:{i:0;s:4:\"FAQs\";}s:11:\"preview_url\";s:63:\"https://templates.ultimatebeaver.com/gardener/template/faqs-04/\";}s:19:\"site-9-template-354\";a:7:{s:2:\"id\";s:19:\"site-9-template-354\";s:4:\"name\";s:8:\"About 03\";s:5:\"image\";s:112:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/9/2016/09/about-03-free-img-350x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:97:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-9-template-354.dat\";s:4:\"tags\";a:1:{i:0;s:5:\"about\";}s:11:\"preview_url\";s:64:\"https://templates.ultimatebeaver.com/gardener/template/about-03/\";}s:19:\"site-9-template-339\";a:7:{s:2:\"id\";s:19:\"site-9-template-339\";s:4:\"name\";s:10:\"Contact 07\";s:5:\"image\";s:114:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/9/2016/09/contact-07-free-img-384x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:97:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-9-template-339.dat\";s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:11:\"preview_url\";s:66:\"https://templates.ultimatebeaver.com/gardener/template/contact-07/\";}s:20:\"site-10-template-364\";a:7:{s:2:\"id\";s:20:\"site-10-template-364\";s:4:\"name\";s:10:\"Contact 08\";s:5:\"image\";s:115:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/10/2016/10/contact-08-free-img-400x320.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:98:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-10-template-364.dat\";s:4:\"tags\";a:1:{i:0;s:7:\"contact\";}s:11:\"preview_url\";s:68:\"https://templates.ultimatebeaver.com/life-coach/template/contact-08/\";}s:20:\"site-10-template-363\";a:7:{s:2:\"id\";s:20:\"site-10-template-363\";s:4:\"name\";s:7:\"FAQs 05\";s:5:\"image\";s:112:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/10/2016/10/FAQs-05-free-img-350x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:98:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-10-template-363.dat\";s:4:\"tags\";a:1:{i:0;s:4:\"FAQs\";}s:11:\"preview_url\";s:65:\"https://templates.ultimatebeaver.com/life-coach/template/faqs-05/\";}s:20:\"site-10-template-362\";a:7:{s:2:\"id\";s:20:\"site-10-template-362\";s:4:\"name\";s:8:\"About 04\";s:5:\"image\";s:113:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/10/2016/10/about-04-free-img-308x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:98:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-10-template-362.dat\";s:4:\"tags\";a:1:{i:0;s:5:\"about\";}s:11:\"preview_url\";s:66:\"https://templates.ultimatebeaver.com/life-coach/template/about-04/\";}s:19:\"site-11-template-56\";a:7:{s:2:\"id\";s:19:\"site-11-template-56\";s:4:\"name\";s:7:\"Builder\";s:5:\"image\";s:112:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/11/2016/09/builder-free-img-329x400.jpg\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:97:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-11-template-56.dat\";s:4:\"tags\";a:1:{i:0;s:10:\"Home Pages\";}s:11:\"preview_url\";s:62:\"https://templates.ultimatebeaver.com/builder/template/builder/\";}s:22:\"site-54-template-15530\";a:7:{s:2:\"id\";s:22:\"site-54-template-15530\";s:4:\"name\";s:9:\"Logistics\";s:5:\"image\";s:116:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/54/2017/02/logistics-free-img-1-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:100:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-54-template-15530.dat\";s:4:\"tags\";a:1:{i:0;s:10:\"Home Pages\";}s:11:\"preview_url\";s:66:\"https://templates.ultimatebeaver.com/logistics/template/logistics/\";}s:19:\"site-55-template-89\";a:7:{s:2:\"id\";s:19:\"site-55-template-89\";s:4:\"name\";s:20:\"Grooming and Styling\";s:5:\"image\";s:121:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/sites/55/2017/02/grooming-styling-free-img-400x400.png\";s:4:\"type\";s:6:\"layout\";s:7:\"dat_url\";s:97:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-55-template-89.dat\";s:4:\"tags\";a:1:{i:0;s:10:\"Home Pages\";}s:11:\"preview_url\";s:80:\"https://templates.ultimatebeaver.com/grooming-styling/template/grooming-styling/\";}}s:8:\"sections\";a:14:{s:18:\"site-1-category-35\";a:7:{s:2:\"id\";s:18:\"site-1-category-35\";s:4:\"name\";s:14:\"Call to Action\";s:5:\"image\";s:91:\"http://downloads.brainstormforce.com/uabb/sections-cloud-watermark/2016/09/228-free-img.jpg\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-35.dat\";s:5:\"count\";i:21;s:11:\"preview_url\";s:74:\"https://templates.ultimatebeaver.com/template-category/row-call-to-action/\";}s:18:\"site-1-category-42\";a:7:{s:2:\"id\";s:18:\"site-1-category-42\";s:4:\"name\";s:12:\"Contact Info\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-42.dat\";s:5:\"count\";i:11;s:11:\"preview_url\";s:72:\"https://templates.ultimatebeaver.com/template-category/row-contact-info/\";}s:18:\"site-1-category-43\";a:7:{s:2:\"id\";s:18:\"site-1-category-43\";s:4:\"name\";s:7:\"Content\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-43.dat\";s:5:\"count\";i:67;s:11:\"preview_url\";s:67:\"https://templates.ultimatebeaver.com/template-category/row-content/\";}s:18:\"site-1-category-52\";a:7:{s:2:\"id\";s:18:\"site-1-category-52\";s:4:\"name\";s:3:\"FAQ\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-52.dat\";s:5:\"count\";i:4;s:11:\"preview_url\";s:64:\"https://templates.ultimatebeaver.com/template-category/row-faqs/\";}s:18:\"site-1-category-56\";a:7:{s:2:\"id\";s:18:\"site-1-category-56\";s:4:\"name\";s:8:\"Features\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-56.dat\";s:5:\"count\";i:22;s:11:\"preview_url\";s:68:\"https://templates.ultimatebeaver.com/template-category/row-features/\";}s:18:\"site-1-category-63\";a:7:{s:2:\"id\";s:18:\"site-1-category-63\";s:4:\"name\";s:7:\"Gallery\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-63.dat\";s:5:\"count\";i:2;s:11:\"preview_url\";s:67:\"https://templates.ultimatebeaver.com/template-category/row-gallery/\";}s:18:\"site-1-category-66\";a:7:{s:2:\"id\";s:18:\"site-1-category-66\";s:4:\"name\";s:10:\"Google Map\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-66.dat\";s:5:\"count\";i:3;s:11:\"preview_url\";s:70:\"https://templates.ultimatebeaver.com/template-category/row-google-map/\";}s:18:\"site-1-category-68\";a:7:{s:2:\"id\";s:18:\"site-1-category-68\";s:4:\"name\";s:7:\"Heading\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-68.dat\";s:5:\"count\";i:4;s:11:\"preview_url\";s:67:\"https://templates.ultimatebeaver.com/template-category/row-heading/\";}s:18:\"site-1-category-71\";a:7:{s:2:\"id\";s:18:\"site-1-category-71\";s:4:\"name\";s:4:\"Hero\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-71.dat\";s:5:\"count\";i:6;s:11:\"preview_url\";s:64:\"https://templates.ultimatebeaver.com/template-category/row-hero/\";}s:18:\"site-1-category-87\";a:7:{s:2:\"id\";s:18:\"site-1-category-87\";s:4:\"name\";s:5:\"Logos\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-87.dat\";s:5:\"count\";i:20;s:11:\"preview_url\";s:65:\"https://templates.ultimatebeaver.com/template-category/row-logos/\";}s:18:\"site-1-category-93\";a:7:{s:2:\"id\";s:18:\"site-1-category-93\";s:4:\"name\";s:6:\"Number\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:96:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-93.dat\";s:5:\"count\";i:15;s:11:\"preview_url\";s:66:\"https://templates.ultimatebeaver.com/template-category/row-number/\";}s:19:\"site-1-category-113\";a:7:{s:2:\"id\";s:19:\"site-1-category-113\";s:4:\"name\";s:14:\"Subscribe Form\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:97:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-113.dat\";s:5:\"count\";i:6;s:11:\"preview_url\";s:69:\"https://templates.ultimatebeaver.com/template-category/row-subscribe/\";}s:19:\"site-1-category-114\";a:7:{s:2:\"id\";s:19:\"site-1-category-114\";s:4:\"name\";s:4:\"Team\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:97:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-114.dat\";s:5:\"count\";i:7;s:11:\"preview_url\";s:64:\"https://templates.ultimatebeaver.com/template-category/row-team/\";}s:19:\"site-1-category-119\";a:7:{s:2:\"id\";s:19:\"site-1-category-119\";s:4:\"name\";s:12:\"Testimonials\";s:5:\"image\";s:0:\"\";s:4:\"type\";s:3:\"row\";s:7:\"dat_url\";s:97:\"https://templates.ultimatebeaver.com/wp-content/uploads/bb-ultimate-addon/site-1-category-119.dat\";s:5:\"count\";i:6;s:11:\"preview_url\";s:72:\"https://templates.ultimatebeaver.com/template-category/row-testimonials/\";}}}','no'),(333,'uabb_cloud_templates','1518589502','yes'),(1343,'jetpack_activated','1','yes'),(1346,'jetpack_activation_source','a:2:{i:0;s:7:\"unknown\";i:1;N;}','yes'),(1347,'jetpack_sync_settings_disable','0','yes'),(1350,'jetpack_available_modules','a:1:{s:3:\"7.8\";a:43:{s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:3:\"pwa\";s:5:\"5.6.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(1351,'jetpack_options','a:12:{s:7:\"version\";s:14:\"7.8:1572912543\";s:11:\"old_version\";s:16:\"7.4.1:1561835798\";s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:145765292;s:6:\"public\";i:1;s:9:\"jumpstart\";s:20:\"jetpack_action_taken\";s:11:\"master_user\";i:1;s:14:\"last_heartbeat\";i:1572858546;s:22:\"image_widget_migration\";b:1;s:24:\"gallery_widget_migration\";b:1;s:24:\"custom_css_4.7_migration\";b:1;}','yes'),(43388,'woocommerce_thumbnail_image_width','300','yes'),(43381,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(43382,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(43383,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(43384,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(43385,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(43386,'woocommerce_gateway_stripe_retention','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(43387,'woocommerce_single_image_width','600','yes'),(1372,'jetpack_tos_agreed','1','yes'),(1373,'jetpack_secrets','a:0:{}','no'),(1377,'jetpack_private_options','a:2:{s:10:\"blog_token\";s:65:\"gPsx@6up4M(dQqt8W*Qa%)DGK9hROFJj.kO(^YK5Fti*%!Pd%NtgbHbqS2r!#slxv\";s:11:\"user_tokens\";a:1:{i:1;s:67:\"xGkY6AOzDPjy0T0NBLEI0hHksR&lHV$L.sB(MJdqbxXe*osm(XhUNDjkteLPrV0$h.1\";}}','yes'),(1374,'wc_connect_options','a:8:{s:12:\"tos_accepted\";b:1;s:10:\"store_guid\";s:36:\"afadbb56-293c-4fde-96e7-4d177d50c049\";s:25:\"shipping_methods_migrated\";b:1;s:27:\"needs_tax_environment_setup\";b:0;s:11:\"banner_ppec\";s:3:\"yes\";s:15:\"payment_methods\";a:0:{}s:11:\"stripe_keys\";a:2:{s:15:\"publishable_key\";s:32:\"e1a23bb1037c6d518029f6eb817b4c43\";s:10:\"secret_key\";s:32:\"55e62c0b44b2d355a21b1dc1815b3941\";}s:22:\"stripe_status_migrated\";b:1;}','yes'),(1479,'wc_connect_services_last_update','1572858550','yes'),(1480,'wc_connect_last_heartbeat','1572858550','yes'),(1481,'wc_connect_services','O:8:\"stdClass\":3:{s:8:\"shipping\";a:1:{i:0;O:8:\"stdClass\":8:{s:2:\"id\";s:4:\"usps\";s:9:\"method_id\";s:16:\"wc_services_usps\";s:18:\"method_description\";s:52:\"USPS Shipping Rates, Powered by WooCommerce Services\";s:12:\"method_title\";s:27:\"USPS (WooCommerce Services)\";s:12:\"carrier_name\";s:4:\"USPS\";s:11:\"form_layout\";a:4:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:8:\"fieldset\";s:5:\"title\";s:5:\"Setup\";s:5:\"items\";a:3:{i:0;O:8:\"stdClass\":2:{s:3:\"key\";s:5:\"title\";s:15:\"validation_hint\";s:18:\"Title is required.\";}i:1;O:8:\"stdClass\":2:{s:3:\"key\";s:6:\"origin\";s:15:\"validation_hint\";s:118:\"The zip code of where you are shipping from is required and should be a valid 5 digit or ZIP+4 United States ZIP code.\";}i:2;O:8:\"stdClass\":3:{s:3:\"key\";s:16:\"shipping_classes\";s:4:\"type\";s:16:\"shipping_classes\";s:18:\"requiredWcsVersion\";s:9:\">= 1.17.0\";}}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:8:\"fieldset\";s:5:\"title\";s:5:\"Rates\";s:5:\"items\";a:5:{i:0;O:8:\"stdClass\":3:{s:3:\"key\";s:8:\"services\";s:4:\"type\";s:17:\"shipping_services\";s:15:\"validation_hint\";s:28:\"Select at least one service.\";}i:1;O:8:\"stdClass\":3:{s:3:\"key\";s:11:\"rate_filter\";s:4:\"type\";s:6:\"radios\";s:8:\"titleMap\";O:8:\"stdClass\":2:{s:3:\"all\";s:50:\"Show all available rates and let customers choose.\";s:8:\"cheapest\";s:28:\"Only show the cheapest rate.\";}}i:2;O:8:\"stdClass\":3:{s:3:\"key\";s:13:\"fallback_rate\";s:15:\"validation_hint\";s:42:\"Fallback rate should be a positive number.\";s:11:\"placeholder\";s:11:\"Rate amount\";}i:3;O:8:\"stdClass\":3:{s:3:\"key\";s:10:\"rate_class\";s:4:\"type\";s:6:\"radios\";s:8:\"titleMap\";O:8:\"stdClass\":2:{s:6:\"retail\";s:38:\"Retail — Standard post office rates.\";s:3:\"cbp\";s:44:\"Commercial — Discounted post office rates.\";}}i:4;O:8:\"stdClass\":3:{s:3:\"key\";s:19:\"shipping_learn_more\";s:4:\"type\";s:4:\"text\";s:11:\"description\";s:153:\"<a href=\"https://docs.woocommerce.com/document/woocommerce-services/#section-4\" target=\"_blank\">Learn more</a> about available shipping rates and prices.\";}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:8:\"fieldset\";s:5:\"title\";s:9:\"Packaging\";s:5:\"items\";a:2:{i:0;O:8:\"stdClass\":3:{s:3:\"key\";s:14:\"packing_method\";s:4:\"type\";s:6:\"radios\";s:8:\"titleMap\";O:8:\"stdClass\":2:{s:8:\"by_price\";s:52:\"Pack items together, in as few packages as possible.\";s:10:\"individual\";s:53:\"Ship items individually, in their original packaging.\";}}i:1;O:8:\"stdClass\":2:{s:3:\"key\";s:5:\"boxes\";s:4:\"type\";s:8:\"packages\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"actions\";s:5:\"items\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"submit\";s:5:\"title\";s:12:\"Save changes\";}}}}s:16:\"service_settings\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"object\";s:5:\"title\";s:4:\"USPS\";s:11:\"description\";s:84:\"The USPS extension obtains rates dynamically from the USPS API during cart/checkout.\";s:8:\"required\";a:3:{i:0;s:5:\"title\";i:1;s:6:\"origin\";i:2;s:8:\"services\";}s:11:\"definitions\";O:8:\"stdClass\":2:{s:16:\"shipping_service\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:8:\"services\";a:49:{i:0;O:8:\"stdClass\":5:{s:2:\"id\";s:3:\"pri\";s:4:\"name\";s:13:\"Priority Mail\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";}i:1;O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"pri_flat_env\";s:4:\"name\";s:34:\"Priority Mail - Flat Rate Envelope\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:13:\"flat_envelope\";}i:2;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"pri_large_flat_box\";s:4:\"name\";s:45:\"Priority Mail - Large Flat Rate Box (12x12x5)\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:14:\"large_flat_box\";}i:3;O:8:\"stdClass\":6:{s:2:\"id\";s:20:\"pri_large_flat_box_2\";s:4:\"name\";s:45:\"Priority Mail - Large Flat Rate Box (23x11x3)\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:16:\"large_flat_box_2\";}i:4;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"pri_legal_flat_env\";s:4:\"name\";s:40:\"Priority Mail - Legal Flat Rate Envelope\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:19:\"legal_flat_envelope\";}i:5;O:8:\"stdClass\":6:{s:2:\"id\";s:23:\"pri_medium_flat_box_top\";s:4:\"name\";s:50:\"Priority Mail - Medium Flat Rate Box (Top Loading)\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:19:\"medium_flat_box_top\";}i:6;O:8:\"stdClass\":6:{s:2:\"id\";s:24:\"pri_medium_flat_box_side\";s:4:\"name\";s:51:\"Priority Mail - Medium Flat Rate Box (Side Loading)\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:20:\"medium_flat_box_side\";}i:7;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_sm_flat_box\";s:4:\"name\";s:35:\"Priority Mail - Small Flat Rate Box\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:14:\"small_flat_box\";}i:8;O:8:\"stdClass\":6:{s:2:\"id\";s:19:\"pri_padded_flat_env\";s:4:\"name\";s:41:\"Priority Mail - Padded Flat Rate Envelope\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:20:\"padded_flat_envelope\";}i:9;O:8:\"stdClass\":6:{s:2:\"id\";s:18:\"pri_small_flat_env\";s:4:\"name\";s:40:\"Priority Mail - Small Flat Rate Envelope\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:19:\"small_flat_envelope\";}i:10;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_window_flat\";s:4:\"name\";s:41:\"Priority Mail - Window Flat Rate Envelope\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:20:\"window_flat_envelope\";}i:11;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_regional_a1\";s:4:\"name\";s:36:\"Priority Mail - Regional Rate Box A1\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:11:\"regional_a1\";}i:12;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_regional_a2\";s:4:\"name\";s:36:\"Priority Mail - Regional Rate Box A2\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:11:\"regional_a2\";}i:13;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_regional_b1\";s:4:\"name\";s:36:\"Priority Mail - Regional Rate Box B1\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:11:\"regional_b1\";}i:14;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_regional_b2\";s:4:\"name\";s:36:\"Priority Mail - Regional Rate Box B2\";s:5:\"group\";s:8:\"priority\";s:10:\"group_name\";s:13:\"Priority Mail\";s:14:\"group_estimate\";s:8:\"1-3 days\";s:18:\"predefined_package\";s:11:\"regional_b2\";}i:15;O:8:\"stdClass\":5:{s:2:\"id\";s:7:\"pri_exp\";s:4:\"name\";s:21:\"Priority Mail Express\";s:5:\"group\";s:12:\"priority_exp\";s:10:\"group_name\";s:21:\"Priority Mail Express\";s:14:\"group_estimate\";s:9:\"Overnight\";}i:16;O:8:\"stdClass\":6:{s:2:\"id\";s:16:\"pri_exp_flat_env\";s:4:\"name\";s:42:\"Priority Mail Express - Flat Rate Envelope\";s:5:\"group\";s:12:\"priority_exp\";s:10:\"group_name\";s:21:\"Priority Mail Express\";s:14:\"group_estimate\";s:9:\"Overnight\";s:18:\"predefined_package\";s:21:\"express_flat_envelope\";}i:17;O:8:\"stdClass\":6:{s:2:\"id\";s:22:\"pri_exp_legal_flat_env\";s:4:\"name\";s:48:\"Priority Mail Express - Legal Flat Rate Envelope\";s:5:\"group\";s:12:\"priority_exp\";s:10:\"group_name\";s:21:\"Priority Mail Express\";s:14:\"group_estimate\";s:9:\"Overnight\";s:18:\"predefined_package\";s:27:\"express_legal_flat_envelope\";}i:18;O:8:\"stdClass\":6:{s:2:\"id\";s:23:\"pri_exp_padded_flat_env\";s:4:\"name\";s:49:\"Priority Mail Express - Padded Flat Rate Envelope\";s:5:\"group\";s:12:\"priority_exp\";s:10:\"group_name\";s:21:\"Priority Mail Express\";s:14:\"group_estimate\";s:9:\"Overnight\";s:18:\"predefined_package\";s:28:\"express_padded_flat_envelope\";}i:19;O:8:\"stdClass\":5:{s:2:\"id\";s:19:\"first_class_stamped\";s:4:\"name\";s:33:\"First-Class Mail - Stamped Letter\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:20;O:8:\"stdClass\":5:{s:2:\"id\";s:19:\"first_class_metered\";s:4:\"name\";s:33:\"First-Class Mail - Metered Letter\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:21;O:8:\"stdClass\":5:{s:2:\"id\";s:18:\"first_class_parcel\";s:4:\"name\";s:25:\"First-Class Mail - Parcel\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:22;O:8:\"stdClass\":5:{s:2:\"id\";s:23:\"first_class_lg_postcard\";s:4:\"name\";s:34:\"First-Class Mail - Large Postcards\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:23;O:8:\"stdClass\":5:{s:2:\"id\";s:20:\"first_class_postcard\";s:4:\"name\";s:28:\"First-Class Mail - Postcards\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:24;O:8:\"stdClass\":5:{s:2:\"id\";s:23:\"first_class_lg_env_flat\";s:4:\"name\";s:33:\"First-Class Mail - Large Envelope\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:25;O:8:\"stdClass\":5:{s:2:\"id\";s:19:\"first_class_package\";s:4:\"name\";s:27:\"First-Class Package Service\";s:5:\"group\";s:11:\"first_class\";s:10:\"group_name\";s:16:\"First-Class Mail\";s:14:\"group_estimate\";s:8:\"2-3 days\";}i:26;O:8:\"stdClass\":5:{s:2:\"id\";s:13:\"retail_ground\";s:4:\"name\";s:18:\"USPS Retail Ground\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:27;O:8:\"stdClass\":5:{s:2:\"id\";s:20:\"parcel_select_ground\";s:4:\"name\";s:20:\"Parcel Select Ground\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:28;O:8:\"stdClass\":5:{s:2:\"id\";s:5:\"media\";s:4:\"name\";s:17:\"Media Mail Parcel\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:29;O:8:\"stdClass\":5:{s:2:\"id\";s:3:\"gxg\";s:4:\"name\";s:42:\"USPS Global Express Guaranteed - Envelopes\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:30;O:8:\"stdClass\":5:{s:2:\"id\";s:12:\"pri_exp_intl\";s:4:\"name\";s:35:\"Priority Mail Express International\";s:5:\"group\";s:30:\"priority_express_international\";s:10:\"group_name\";s:35:\"Priority Mail Express International\";s:14:\"group_estimate\";s:8:\"3-5 days\";}i:31;O:8:\"stdClass\":6:{s:2:\"id\";s:21:\"pri_exp_intl_env_flat\";s:4:\"name\";s:57:\"Priority Mail Express International -  Flat Rate Envelope\";s:5:\"group\";s:30:\"priority_express_international\";s:10:\"group_name\";s:35:\"Priority Mail Express International\";s:14:\"group_estimate\";s:8:\"3-5 days\";s:18:\"predefined_package\";s:21:\"express_flat_envelope\";}i:32;O:8:\"stdClass\":6:{s:2:\"id\";s:23:\"pri_exp_intl_legal_flat\";s:4:\"name\";s:62:\"Priority Mail Express International - Legal Flat Rate Envelope\";s:5:\"group\";s:30:\"priority_express_international\";s:10:\"group_name\";s:35:\"Priority Mail Express International\";s:14:\"group_estimate\";s:8:\"3-5 days\";s:18:\"predefined_package\";s:27:\"express_legal_flat_envelope\";}i:33;O:8:\"stdClass\":6:{s:2:\"id\";s:24:\"pri_exp_intl_padded_flat\";s:4:\"name\";s:63:\"Priority Mail Express International - Padded Flat Rate Envelope\";s:5:\"group\";s:30:\"priority_express_international\";s:10:\"group_name\";s:35:\"Priority Mail Express International\";s:14:\"group_estimate\";s:8:\"3-5 days\";s:18:\"predefined_package\";s:28:\"express_padded_flat_envelope\";}i:34;O:8:\"stdClass\":5:{s:2:\"id\";s:8:\"pri_intl\";s:4:\"name\";s:27:\"Priority Mail International\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";}i:35;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_intl_lg_box\";s:4:\"name\";s:49:\"Priority Mail International - Large Flat Rate Box\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:14:\"large_flat_box\";}i:36;O:8:\"stdClass\":6:{s:2:\"id\";s:19:\"pri_intl_md_box_top\";s:4:\"name\";s:64:\"Priority Mail International - Medium Flat Rate Box (Top Loading)\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:19:\"medium_flat_box_top\";}i:37;O:8:\"stdClass\":6:{s:2:\"id\";s:20:\"pri_intl_md_box_side\";s:4:\"name\";s:65:\"Priority Mail International - Medium Flat Rate Box (Side Loading)\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:20:\"medium_flat_box_side\";}i:38;O:8:\"stdClass\":6:{s:2:\"id\";s:15:\"pri_intl_sm_box\";s:4:\"name\";s:49:\"Priority Mail International - Small Flat Rate Box\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:14:\"small_flat_box\";}i:39;O:8:\"stdClass\":6:{s:2:\"id\";s:12:\"pri_intl_dvd\";s:4:\"name\";s:54:\"Priority Mail International - DVD Flat Rate priced box\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:8:\"dvd_flat\";}i:40;O:8:\"stdClass\":6:{s:2:\"id\";s:14:\"pri_intl_video\";s:4:\"name\";s:62:\"Priority Mail International - Large Video Flat Rate priced box\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:16:\"large_video_flat\";}i:41;O:8:\"stdClass\":6:{s:2:\"id\";s:17:\"pri_intl_env_flat\";s:4:\"name\";s:48:\"Priority Mail International - Flat Rate Envelope\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:13:\"flat_envelope\";}i:42;O:8:\"stdClass\":6:{s:2:\"id\";s:19:\"pri_intl_legal_flat\";s:4:\"name\";s:54:\"Priority Mail International - Legal Flat Rate Envelope\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:19:\"legal_flat_envelope\";}i:43;O:8:\"stdClass\":6:{s:2:\"id\";s:20:\"pri_intl_padded_flat\";s:4:\"name\";s:55:\"Priority Mail International - Padded Flat Rate Envelope\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:20:\"padded_flat_envelope\";}i:44;O:8:\"stdClass\":6:{s:2:\"id\";s:20:\"pri_intl_sm_env_flat\";s:4:\"name\";s:54:\"Priority Mail International - Small Flat Rate Envelope\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:19:\"small_flat_envelope\";}i:45;O:8:\"stdClass\":6:{s:2:\"id\";s:20:\"pri_intl_window_flat\";s:4:\"name\";s:55:\"Priority Mail International - Window Flat Rate Envelope\";s:5:\"group\";s:22:\"priority_international\";s:10:\"group_name\";s:27:\"Priority Mail International\";s:14:\"group_estimate\";s:9:\"6-10 days\";s:18:\"predefined_package\";s:20:\"window_flat_envelope\";}i:46;O:8:\"stdClass\":5:{s:2:\"id\";s:16:\"first_class_intl\";s:4:\"name\";s:41:\"First-Class Package International Service\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:47;O:8:\"stdClass\":5:{s:2:\"id\";s:23:\"first_class_intl_lg_env\";s:4:\"name\";s:47:\"First-Class Mail - International Large Envelope\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}i:48;O:8:\"stdClass\":5:{s:2:\"id\";s:23:\"first_class_intl_letter\";s:4:\"name\";s:39:\"First-Class Mail - International Letter\";s:5:\"group\";s:10:\"speciality\";s:10:\"group_name\";s:19:\"Speciality Services\";s:14:\"group_estimate\";N;}}}s:10:\"properties\";O:8:\"stdClass\":9:{s:5:\"title\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:21:\"Shipping method title\";s:7:\"default\";s:4:\"USPS\";s:9:\"minLength\";i:1;}s:10:\"account_id\";O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:12:\"USPS Account\";s:11:\"description\";s:117:\"Use the account provided or <a href=\"https://registration.shippingapis.com/\" target=\"_blank\">sign up for your own</a>\";s:7:\"default\";s:0:\"\";s:9:\"minLength\";i:0;}s:6:\"origin\";O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:15:\"Origin ZIP Code\";s:11:\"description\";s:28:\"Where are you shipping from?\";s:7:\"default\";s:5:\"90260\";s:7:\"pattern\";s:18:\"^\\d{5}(?:-\\d{4})?$\";}s:16:\"shipping_classes\";O:8:\"stdClass\":4:{s:4:\"type\";s:5:\"array\";s:5:\"title\";s:16:\"Shipping Classes\";s:11:\"description\";s:60:\"Do you need to limit the shipping method to certain classes?\";s:7:\"default\";a:0:{}}s:8:\"services\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"object\";s:10:\"definition\";s:8:\"services\";s:5:\"title\";s:8:\"Services\";s:11:\"description\";s:146:\"Which <a target=\"_blank\" href=\"https://www.usps.com/ship/mail-shipping-services.htm\">shipping services</a> do you want to offer to your customers?\";s:5:\"items\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:10:\"properties\";O:8:\"stdClass\":49:{s:3:\"pri\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:3:\"pri\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:12:\"pri_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:12:\"pri_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:18:\"pri_large_flat_box\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:18:\"pri_large_flat_box\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"pri_large_flat_box_2\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"pri_large_flat_box_2\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:18:\"pri_legal_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:18:\"pri_legal_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"pri_medium_flat_box_top\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"pri_medium_flat_box_top\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:24:\"pri_medium_flat_box_side\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:24:\"pri_medium_flat_box_side\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_sm_flat_box\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_sm_flat_box\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:19:\"pri_padded_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:19:\"pri_padded_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:18:\"pri_small_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:18:\"pri_small_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_window_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_window_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_regional_a1\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_regional_a1\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_regional_a2\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_regional_a2\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_regional_b1\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_regional_b1\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_regional_b2\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_regional_b2\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:7:\"pri_exp\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:7:\"pri_exp\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:16:\"pri_exp_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:16:\"pri_exp_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:22:\"pri_exp_legal_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:22:\"pri_exp_legal_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"pri_exp_padded_flat_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"pri_exp_padded_flat_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:19:\"first_class_stamped\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:19:\"first_class_stamped\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:19:\"first_class_metered\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:19:\"first_class_metered\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:18:\"first_class_parcel\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:18:\"first_class_parcel\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"first_class_lg_postcard\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"first_class_lg_postcard\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"first_class_postcard\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"first_class_postcard\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"first_class_lg_env_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"first_class_lg_env_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:19:\"first_class_package\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:19:\"first_class_package\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:13:\"retail_ground\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:13:\"retail_ground\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"parcel_select_ground\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"parcel_select_ground\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:5:\"media\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:5:\"media\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:3:\"gxg\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:3:\"gxg\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:12:\"pri_exp_intl\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:12:\"pri_exp_intl\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:21:\"pri_exp_intl_env_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:21:\"pri_exp_intl_env_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"pri_exp_intl_legal_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"pri_exp_intl_legal_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:24:\"pri_exp_intl_padded_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:24:\"pri_exp_intl_padded_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:8:\"pri_intl\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:8:\"pri_intl\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_intl_lg_box\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_intl_lg_box\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:19:\"pri_intl_md_box_top\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:19:\"pri_intl_md_box_top\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"pri_intl_md_box_side\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"pri_intl_md_box_side\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:15:\"pri_intl_sm_box\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:15:\"pri_intl_sm_box\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:1;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:12:\"pri_intl_dvd\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:12:\"pri_intl_dvd\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:14:\"pri_intl_video\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:14:\"pri_intl_video\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:17:\"pri_intl_env_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:17:\"pri_intl_env_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:19:\"pri_intl_legal_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:19:\"pri_intl_legal_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"pri_intl_padded_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"pri_intl_padded_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"pri_intl_sm_env_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"pri_intl_sm_env_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:20:\"pri_intl_window_flat\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:20:\"pri_intl_window_flat\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:16:\"first_class_intl\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:16:\"first_class_intl\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"first_class_intl_lg_env\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"first_class_intl_lg_env\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}s:23:\"first_class_intl_letter\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"object\";s:10:\"properties\";O:8:\"stdClass\":4:{s:2:\"id\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:9:\"minLength\";i:1;s:7:\"default\";s:23:\"first_class_intl_letter\";}s:7:\"enabled\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:7:\"default\";b:0;}s:10:\"adjustment\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:7:\"default\";i:0;}s:15:\"adjustment_type\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:4:\"enum\";a:2:{i:0;s:4:\"flat\";i:1;s:10:\"percentage\";}s:7:\"default\";s:4:\"flat\";}}}}}s:13:\"fallback_rate\";O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"number\";s:5:\"title\";s:20:\"Fallback Rate (in $)\";s:11:\"description\";s:148:\"If USPS returns no rates, offer the customer a fallback rate so they are still able to checkout. Leave this field as 0 to indicate no fallback rate.\";s:7:\"default\";i:0;s:7:\"minimum\";i:0;}s:11:\"rate_filter\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:35:\"Which rates would you like to show?\";s:4:\"enum\";a:2:{i:0;s:3:\"all\";i:1;s:8:\"cheapest\";}s:7:\"default\";s:3:\"all\";}s:10:\"rate_class\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:36:\"What price would you like to charge?\";s:4:\"enum\";a:2:{i:0;s:6:\"retail\";i:1;s:3:\"cbp\";}s:7:\"default\";s:6:\"retail\";}s:14:\"packing_method\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:14:\"Packing Method\";s:4:\"enum\";a:2:{i:0;s:8:\"by_price\";i:1;s:10:\"individual\";}s:7:\"default\";s:8:\"by_price\";}}}s:8:\"packages\";O:8:\"stdClass\":5:{s:14:\"pri_flat_boxes\";O:8:\"stdClass\":2:{s:5:\"title\";s:34:\"USPS Priority Mail Flat Rate Boxes\";s:11:\"definitions\";a:11:{i:0;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:18:\"8.63 x 5.38 x 1.63\";s:16:\"outer_dimensions\";s:18:\"8.63 x 5.38 x 1.63\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:14:\"small_flat_box\";s:4:\"name\";s:19:\"Small Flat Rate Box\";s:10:\"dimensions\";s:18:\"8.63 x 5.38 x 1.63\";s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:1;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:14:\"11 x 8.5 x 5.5\";s:16:\"outer_dimensions\";s:16:\"11.25 x 8.75 x 6\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:19:\"medium_flat_box_top\";s:4:\"name\";s:35:\"Medium Flat Rate Box 1, Top Loading\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:14:\"11 x 8.5 x 5.5\";s:5:\"outer\";s:16:\"11.25 x 8.75 x 6\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:2;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"13.63 x 11.88 x 3.38\";s:16:\"outer_dimensions\";s:13:\"14 x 12 x 3.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:20:\"medium_flat_box_side\";s:4:\"name\";s:36:\"Medium Flat Rate Box 2, Side Loading\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:20:\"13.63 x 11.88 x 3.38\";s:5:\"outer\";s:13:\"14 x 12 x 3.5\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:3;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:13:\"12 x 12 x 5.5\";s:16:\"outer_dimensions\";s:17:\"12.25 x 12.25 x 6\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:14:\"large_flat_box\";s:4:\"name\";s:19:\"Large Flat Rate Box\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:13:\"12 x 12 x 5.5\";s:5:\"outer\";s:17:\"12.25 x 12.25 x 6\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:4;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:17:\"23.69 x 11.75 x 3\";s:16:\"outer_dimensions\";s:20:\"24.06 x 11.88 x 3.13\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:16:\"large_flat_box_2\";s:4:\"name\";s:30:\"Large Flat Rate Board Game Box\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:17:\"23.69 x 11.75 x 3\";s:5:\"outer\";s:20:\"24.06 x 11.88 x 3.13\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:5;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:18:\"7.56 x 5.44 x 0.63\";s:16:\"outer_dimensions\";s:18:\"7.56 x 5.44 x 0.63\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:8:\"dvd_flat\";s:4:\"name\";s:34:\"DVD Flat Rate (International Only)\";s:10:\"dimensions\";s:18:\"7.56 x 5.44 x 0.63\";s:10:\"max_weight\";i:64;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:6;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:15:\"9.25 x 6.25 x 2\";s:16:\"outer_dimensions\";s:15:\"9.25 x 6.25 x 2\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:16:\"large_video_flat\";s:4:\"name\";s:50:\"1096L - Large Video Flat Rate (International Only)\";s:10:\"dimensions\";s:15:\"9.25 x 6.25 x 2\";s:10:\"max_weight\";i:64;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:1;}i:7;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:13:\"10 x 7 x 4.75\";s:16:\"outer_dimensions\";s:13:\"10 x 7 x 4.75\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:11:\"regional_a1\";s:4:\"name\";s:20:\"Regional Rate Box A1\";s:10:\"dimensions\";s:13:\"10 x 7 x 4.75\";s:10:\"max_weight\";i:240;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:0;}i:8;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"10.94 x 2.38 x 12.81\";s:16:\"outer_dimensions\";s:20:\"10.94 x 2.38 x 12.81\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:11:\"regional_a2\";s:4:\"name\";s:20:\"Regional Rate Box A2\";s:10:\"dimensions\";s:20:\"10.94 x 2.38 x 12.81\";s:10:\"max_weight\";i:240;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:0;}i:9;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:14:\"12 x 10.25 x 5\";s:16:\"outer_dimensions\";s:14:\"12 x 10.25 x 5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:11:\"regional_b1\";s:4:\"name\";s:20:\"Regional Rate Box B1\";s:10:\"dimensions\";s:14:\"12 x 10.25 x 5\";s:10:\"max_weight\";i:320;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:0;}i:10;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:20:\"14.38 x 2.88 x 15.88\";s:16:\"outer_dimensions\";s:20:\"14.38 x 2.88 x 15.88\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:11:\"regional_b2\";s:4:\"name\";s:20:\"Regional Rate Box B2\";s:10:\"dimensions\";s:20:\"14.38 x 2.88 x 15.88\";s:10:\"max_weight\";i:320;s:9:\"is_letter\";b:0;s:8:\"group_id\";s:14:\"pri_flat_boxes\";s:22:\"can_ship_international\";b:0;}}}s:13:\"pri_envelopes\";O:8:\"stdClass\":2:{s:5:\"title\";s:38:\"USPS Priority Mail Flat Rate Envelopes\";s:11:\"definitions\";a:5:{i:0;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:16:\"12.5 x 9.5 x 0.5\";s:16:\"outer_dimensions\";s:16:\"12.5 x 9.5 x 0.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:13:\"flat_envelope\";s:4:\"name\";s:18:\"Flat Rate Envelope\";s:10:\"dimensions\";a:4:{i:0;s:16:\"12.5 x 9.5 x 0.5\";i:1;s:16:\"12.5 x 7.5 x 1.5\";i:2;s:16:\"12.5 x 5.5 x 2.5\";i:3;s:16:\"12.5 x 3.5 x 3.5\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:13:\"pri_envelopes\";s:22:\"can_ship_international\";b:1;}i:1;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:14:\"15 x 9.5 x 0.5\";s:16:\"outer_dimensions\";s:14:\"15 x 9.5 x 0.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:19:\"legal_flat_envelope\";s:4:\"name\";s:24:\"Legal Flat Rate Envelope\";s:10:\"dimensions\";a:4:{i:0;s:14:\"15 x 9.5 x 0.5\";i:1;s:16:\"12.5 x 7.5 x 1.5\";i:2;s:16:\"12.5 x 5.5 x 2.5\";i:3;s:16:\"12.5 x 3.5 x 3.5\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:13:\"pri_envelopes\";s:22:\"can_ship_international\";b:1;}i:2;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:16:\"12.5 x 9.5 x 0.5\";s:16:\"outer_dimensions\";s:16:\"12.5 x 9.5 x 0.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:20:\"padded_flat_envelope\";s:4:\"name\";s:25:\"Padded Flat Rate Envelope\";s:10:\"dimensions\";a:4:{i:0;s:16:\"12.5 x 9.5 x 0.5\";i:1;s:16:\"12.5 x 7.5 x 1.5\";i:2;s:16:\"12.5 x 5.5 x 2.5\";i:3;s:16:\"12.5 x 3.5 x 3.5\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:13:\"pri_envelopes\";s:22:\"can_ship_international\";b:1;}i:3;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:16:\"12.5 x 9.5 x 0.5\";s:16:\"outer_dimensions\";s:16:\"12.5 x 9.5 x 0.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:20:\"window_flat_envelope\";s:4:\"name\";s:40:\"Window Flat Rate Envelope (12.5\" x 9.5\")\";s:10:\"dimensions\";a:4:{i:0;s:16:\"12.5 x 9.5 x 0.5\";i:1;s:16:\"12.5 x 7.5 x 1.5\";i:2;s:16:\"12.5 x 5.5 x 2.5\";i:3;s:16:\"12.5 x 3.5 x 3.5\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:13:\"pri_envelopes\";s:22:\"can_ship_international\";b:1;}i:4;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:12:\"10 x 6 x 0.5\";s:16:\"outer_dimensions\";s:12:\"10 x 6 x 0.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:19:\"small_flat_envelope\";s:4:\"name\";s:24:\"Small Flat Rate Envelope\";s:10:\"dimensions\";a:3:{i:0;s:12:\"10 x 6 x 0.5\";i:1;s:12:\"10 x 4 x 1.5\";i:2;s:15:\"10 x 2.5 x 2.25\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:13:\"pri_envelopes\";s:22:\"can_ship_international\";b:1;}}}s:9:\"pri_boxes\";O:8:\"stdClass\":2:{s:5:\"title\";s:24:\"USPS Priority Mail Boxes\";s:11:\"definitions\";a:10:{i:0;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:19:\"37.69 x 6.13 x 5.06\";s:16:\"outer_dimensions\";s:19:\"37.69 x 6.13 x 5.06\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:11:\"medium_tube\";s:4:\"name\";s:25:\"Priority Mail Medium Tube\";s:10:\"dimensions\";s:19:\"37.69 x 6.13 x 5.06\";s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:1;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:13:\"25 x 6 x 5.88\";s:16:\"outer_dimensions\";s:13:\"25 x 6 x 5.88\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:10:\"small_tube\";s:4:\"name\";s:24:\"Priority Mail Small Tube\";s:10:\"dimensions\";s:13:\"25 x 6 x 5.88\";s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:2;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:18:\"7.5 x 5.13 x 14.38\";s:16:\"outer_dimensions\";s:18:\"7.5 x 5.13 x 14.38\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:8:\"shoe_box\";s:4:\"name\";s:22:\"Priority Mail Shoe Box\";s:10:\"dimensions\";s:18:\"7.5 x 5.13 x 14.38\";s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:3;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:9:\"7 x 7 x 6\";s:16:\"outer_dimensions\";s:9:\"7 x 7 x 6\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:10:\"priority_4\";s:4:\"name\";s:21:\"Priority Mail Box - 4\";s:10:\"dimensions\";s:9:\"7 x 7 x 6\";s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:4;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:11:\"12 x 12 x 8\";s:16:\"outer_dimensions\";s:11:\"12 x 12 x 8\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:10:\"priority_7\";s:4:\"name\";s:21:\"Priority Mail Box - 7\";s:10:\"dimensions\";s:11:\"12 x 12 x 8\";s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:5;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:17:\"15.25 x 12.38 x 3\";s:16:\"outer_dimensions\";s:20:\"15.63 x 12.44 x 3.13\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:13:\"priority_1095\";s:4:\"name\";s:24:\"Priority Mail Box - 1095\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:17:\"15.25 x 12.38 x 3\";s:5:\"outer\";s:20:\"15.63 x 12.44 x 3.13\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:6;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:15:\"9.25 x 6.25 x 2\";s:16:\"outer_dimensions\";s:18:\"9.56 x 6.44 x 2.19\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:14:\"priority_1096L\";s:4:\"name\";s:25:\"Priority Mail Box - 1096L\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:15:\"9.25 x 6.25 x 2\";s:5:\"outer\";s:18:\"9.56 x 6.44 x 2.19\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:7;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:19:\"11.5 x 13.13 x 2.38\";s:16:\"outer_dimensions\";s:19:\"11.63 x 13.44 x 2.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:13:\"priority_1097\";s:4:\"name\";s:24:\"Priority Mail Box - 1097\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:19:\"11.5 x 13.13 x 2.38\";s:5:\"outer\";s:19:\"11.63 x 13.44 x 2.5\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:8;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:18:\"7.56 x 5.44 x 0.63\";s:16:\"outer_dimensions\";s:18:\"7.56 x 5.44 x 0.63\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:12:\"priority_dvd\";s:4:\"name\";s:21:\"Priority Mail DVD Box\";s:10:\"dimensions\";s:18:\"7.56 x 5.44 x 0.63\";s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}i:9;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:19:\"11.63 x 15.13 x 0.5\";s:16:\"outer_dimensions\";s:19:\"11.63 x 15.13 x 0.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:23:\"priority_tyvek_envelope\";s:4:\"name\";s:28:\"Priority Mail Tyvek Envelope\";s:10:\"dimensions\";s:19:\"11.63 x 15.13 x 0.5\";s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:1;s:17:\"service_group_ids\";a:2:{i:0;s:8:\"priority\";i:1;s:22:\"priority_international\";}s:8:\"group_id\";s:9:\"pri_boxes\";s:22:\"can_ship_international\";b:1;}}}s:21:\"pri_express_envelopes\";O:8:\"stdClass\":2:{s:5:\"title\";s:46:\"USPS Priority Mail Express Flat Rate Envelopes\";s:11:\"definitions\";a:3:{i:0;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:16:\"12.5 x 9.5 x 0.5\";s:16:\"outer_dimensions\";s:16:\"12.5 x 9.5 x 0.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:21:\"express_flat_envelope\";s:4:\"name\";s:18:\"Flat Rate Envelope\";s:10:\"dimensions\";a:4:{i:0;s:16:\"12.5 x 9.5 x 0.5\";i:1;s:16:\"12.5 x 7.5 x 1.5\";i:2;s:16:\"12.5 x 5.5 x 2.5\";i:3;s:16:\"12.5 x 3.5 x 3.5\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:21:\"pri_express_envelopes\";s:22:\"can_ship_international\";b:1;}i:1;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:14:\"15 x 9.5 x 0.5\";s:16:\"outer_dimensions\";s:14:\"15 x 9.5 x 0.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:27:\"express_legal_flat_envelope\";s:4:\"name\";s:24:\"Legal Flat Rate Envelope\";s:10:\"dimensions\";a:4:{i:0;s:14:\"15 x 9.5 x 0.5\";i:1;s:16:\"12.5 x 7.5 x 1.5\";i:2;s:16:\"12.5 x 5.5 x 2.5\";i:3;s:16:\"12.5 x 3.5 x 3.5\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:21:\"pri_express_envelopes\";s:22:\"can_ship_international\";b:1;}i:2;O:8:\"stdClass\":11:{s:16:\"inner_dimensions\";s:16:\"12.5 x 9.5 x 0.5\";s:16:\"outer_dimensions\";s:16:\"12.5 x 9.5 x 0.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:1;s:2:\"id\";s:28:\"express_padded_flat_envelope\";s:4:\"name\";s:25:\"Padded Flat Rate Envelope\";s:10:\"dimensions\";a:4:{i:0;s:16:\"12.5 x 9.5 x 0.5\";i:1;s:16:\"12.5 x 7.5 x 1.5\";i:2;s:16:\"12.5 x 5.5 x 2.5\";i:3;s:16:\"12.5 x 3.5 x 3.5\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:1;s:8:\"group_id\";s:21:\"pri_express_envelopes\";s:22:\"can_ship_international\";b:1;}}}s:17:\"pri_express_boxes\";O:8:\"stdClass\":2:{s:5:\"title\";s:32:\"USPS Priority Mail Express Boxes\";s:11:\"definitions\";a:7:{i:0;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:17:\"15.25 x 12.38 x 3\";s:16:\"outer_dimensions\";s:20:\"15.63 x 12.44 x 3.13\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:11:\"express_box\";s:4:\"name\";s:25:\"Priority Mail Express Box\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:17:\"15.25 x 12.38 x 3\";s:5:\"outer\";s:20:\"15.63 x 12.44 x 3.13\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}i:1;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:14:\"11 x 8.5 x 5.5\";s:16:\"outer_dimensions\";s:16:\"11.25 x 8.75 x 6\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:13:\"express_box_1\";s:4:\"name\";s:27:\"Priority Mail Express Box 1\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:14:\"11 x 8.5 x 5.5\";s:5:\"outer\";s:16:\"11.25 x 8.75 x 6\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}i:2;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:20:\"11.88 x 3.38 x 13.63\";s:16:\"outer_dimensions\";s:13:\"12 x 3.5 x 14\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:13:\"express_box_2\";s:4:\"name\";s:27:\"Priority Mail Express Box 2\";s:10:\"dimensions\";O:8:\"stdClass\":2:{s:5:\"inner\";s:20:\"11.88 x 3.38 x 13.63\";s:5:\"outer\";s:13:\"12 x 3.5 x 14\";}s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}i:3;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:19:\"37.69 x 6.13 x 5.06\";s:16:\"outer_dimensions\";s:19:\"37.69 x 6.13 x 5.06\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:19:\"express_medium_tube\";s:4:\"name\";s:33:\"Priority Mail Express Medium Tube\";s:10:\"dimensions\";s:19:\"37.69 x 6.13 x 5.06\";s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}i:4;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:13:\"25 x 6 x 5.88\";s:16:\"outer_dimensions\";s:13:\"25 x 6 x 5.88\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:18:\"express_small_tube\";s:4:\"name\";s:32:\"Priority Mail Express Small Tube\";s:10:\"dimensions\";s:13:\"25 x 6 x 5.88\";s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:0;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}i:5;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:19:\"11.63 x 15.13 x 0.5\";s:16:\"outer_dimensions\";s:19:\"11.63 x 15.13 x 0.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:22:\"express_tyvek_envelope\";s:4:\"name\";s:36:\"Priority Mail Express Tyvek Envelope\";s:10:\"dimensions\";s:19:\"11.63 x 15.13 x 0.5\";s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:1;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}i:6;O:8:\"stdClass\":12:{s:16:\"inner_dimensions\";s:15:\"5.88 x 10 x 0.5\";s:16:\"outer_dimensions\";s:15:\"5.88 x 10 x 0.5\";s:10:\"box_weight\";i:0;s:12:\"is_flat_rate\";b:0;s:2:\"id\";s:23:\"express_window_envelope\";s:4:\"name\";s:37:\"Priority Mail Express Window Envelope\";s:10:\"dimensions\";s:15:\"5.88 x 10 x 0.5\";s:10:\"max_weight\";i:1120;s:9:\"is_letter\";b:1;s:17:\"service_group_ids\";a:2:{i:0;s:12:\"priority_exp\";i:1;s:30:\"priority_express_international\";}s:8:\"group_id\";s:17:\"pri_express_boxes\";s:22:\"can_ship_international\";b:1;}}}}}}s:5:\"boxes\";O:8:\"stdClass\":5:{s:4:\"type\";s:5:\"array\";s:5:\"title\";s:9:\"Box Sizes\";s:11:\"description\";s:240:\"Items will be packed into these boxes based on item dimensions and volume. Outer dimensions will be passed to the delivery service, whereas inner dimensions will be used for packing. Items not fitting into boxes will be packed individually.\";s:7:\"default\";a:0:{}s:5:\"items\";O:8:\"stdClass\":4:{s:4:\"type\";s:6:\"object\";s:5:\"title\";s:3:\"Box\";s:8:\"required\";a:4:{i:0;s:4:\"name\";i:1;s:16:\"inner_dimensions\";i:2;s:10:\"box_weight\";i:3;s:10:\"max_weight\";}s:10:\"properties\";O:8:\"stdClass\":7:{s:4:\"name\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:4:\"Name\";}s:15:\"is_user_defined\";O:8:\"stdClass\":1:{s:4:\"type\";s:7:\"boolean\";}s:16:\"inner_dimensions\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:28:\"Inner Dimensions (L x W x H)\";s:7:\"pattern\";s:62:\"^(\\d+|(?:\\d*\\.\\d+)) x (\\d+|(?:\\d*\\.\\d+)) x (\\d+|(?:\\d*\\.\\d+))$\";}s:16:\"outer_dimensions\";O:8:\"stdClass\":3:{s:4:\"type\";s:6:\"string\";s:5:\"title\";s:28:\"Outer Dimensions (L x W x H)\";s:7:\"pattern\";s:62:\"^(\\d+|(?:\\d*\\.\\d+)) x (\\d+|(?:\\d*\\.\\d+)) x (\\d+|(?:\\d*\\.\\d+))$\";}s:10:\"box_weight\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:5:\"title\";s:19:\"Weight of Box (lbs)\";}s:10:\"max_weight\";O:8:\"stdClass\":2:{s:4:\"type\";s:6:\"number\";s:5:\"title\";s:16:\"Max Weight (lbs)\";}s:9:\"is_letter\";O:8:\"stdClass\":2:{s:4:\"type\";s:7:\"boolean\";s:5:\"title\";s:6:\"Letter\";}}}}s:7:\"notices\";a:0:{}}','yes'),(1482,'wc_connect_taxes_enabled','no','yes'),(1486,'widget_blog_subscription','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1487,'widget_authors','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1488,'widget_eu_cookie_law_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1489,'widget_facebook-likebox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1490,'widget_flickr','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1491,'widget_wpcom-goodreads','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1492,'widget_google_translate_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1494,'widget_grofile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1495,'widget_internet_defense_league_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1496,'widget_widget_mailchimp_subscriber_popup','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1497,'widget_milestone_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1498,'widget_jetpack_my_community','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1499,'widget_rss_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1500,'widget_jetpack_widget_social_icons','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1501,'widget_twitter_timeline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1502,'widget_upcoming_events_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1503,'widget_jetpack_display_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1506,'jetpack_portfolio','0','yes'),(1508,'sharedaddy_disable_resources','0','yes'),(1509,'jetpack_sitemap_location','','yes'),(1510,'jetpack_testimonial','0','yes'),(1630,'jetpack-sitemap-state','a:5:{s:12:\"sitemap-type\";s:10:\"jp_sitemap\";s:10:\"last-added\";i:0;s:6:\"number\";i:0;s:13:\"last-modified\";s:19:\"1970-01-01 00:00:00\";s:3:\"max\";a:0:{}}','yes'),(1602,'jetpack_plugin_api_action_links','a:12:{s:35:\"backupwordpress/backupwordpress.php\";a:1:{s:7:\"Backups\";s:64:\"http://remoterangler.com/wp-admin/tools.php?page=backupwordpress\";}s:24:\"bb-plugin/fl-builder.php\";a:1:{s:10:\"Change Log\";s:129:\"https://www.wpbeaverbuilder.com/change-logs/?utm_medium=bb-pro&utm_source=plugins-admin-page&utm_campaign=plugins-admin-changelog\";}s:33:\"classic-editor/classic-editor.php\";a:1:{s:8:\"Settings\";s:76:\"http://remoterangler.com/wp-admin/options-writing.php#classic-editor-options\";}s:25:\"gp-premium/gp-premium.php\";a:1:{s:9:\"Configure\";s:66:\"http://remoterangler.com/wp-admin/themes.php?page=generate-options\";}s:19:\"jetpack/jetpack.php\";a:3:{s:7:\"Jetpack\";s:56:\"http://remoterangler.com/wp-admin/admin.php?page=jetpack\";s:8:\"Settings\";s:66:\"http://remoterangler.com/wp-admin/admin.php?page=jetpack#/settings\";s:7:\"Support\";s:65:\"http://remoterangler.com/wp-admin/admin.php?page=jetpack-debugger\";}s:29:\"pdf-embedder/pdf_embedder.php\";a:3:{s:8:\"Settings\";s:78:\"http://remoterangler.com/wp-admin/options-general.php?page=pdfemb_list_options\";s:6:\"Mobile\";s:97:\"http://wp-pdf.com/premium/?utm_source=Plugins%20Premium&utm_medium=freemium&utm_campaign=Freemium\";s:6:\"Secure\";s:95:\"http://wp-pdf.com/secure/?utm_source=Plugins%20Secure&utm_medium=freemium&utm_campaign=Freemium\";}s:27:\"woocommerce/woocommerce.php\";a:1:{s:8:\"Settings\";s:60:\"http://remoterangler.com/wp-admin/admin.php?page=wc-settings\";}s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";a:2:{s:8:\"Settings\";s:93:\"http://remoterangler.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=ppec_paypal\";s:4:\"Docs\";s:62:\"https://docs.woocommerce.com/document/paypal-express-checkout/\";}s:45:\"woocommerce-services/woocommerce-services.php\";a:1:{s:7:\"Support\";s:51:\"https://woocommerce.com/my-account/create-a-ticket/\";}s:70:\"woo-shipment-tracking-order-tracking/woocommerce-shipment-tracking.php\";a:3:{s:8:\"Settings\";s:76:\"http://remoterangler.com/wp-admin/admin.php?page=wc-settings&tab=wf_tracking\";s:7:\"Support\";s:73:\"https://wordpress.org/support/plugin/woo-shipment-tracking-order-tracking\";s:15:\"Premium Upgrade\";s:67:\"https://www.xadapter.com/product/woocommerce-shipment-tracking-pro/\";}s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";a:3:{s:8:\"Settings\";s:88:\"http://remoterangler.com/wp-admin/admin.php?page=wc-settings&tab=checkout&section=stripe\";s:4:\"Docs\";s:45:\"https://docs.woocommerce.com/document/stripe/\";s:7:\"Support\";s:78:\"https://woocommerce.com/my-account/create-a-ticket?broken=primary&select=18627\";}s:24:\"wordpress-seo/wp-seo.php\";a:3:{s:3:\"FAQ\";s:151:\"https://yoa.st/1yc?php_version=5.6&platform=wordpress&platform_version=5.2.4&software=free&software_version=12.4&days_active=30plus&user_language=en_US\";s:15:\"Premium Support\";s:151:\"https://yoa.st/1yb?php_version=5.6&platform=wordpress&platform_version=5.2.4&software=free&software_version=12.4&days_active=30plus&user_language=en_US\";s:8:\"Settings\";s:64:\"http://remoterangler.com/wp-admin/admin.php?page=wpseo_dashboard\";}}','yes'),(45672,'classic-editor-replace','replace','yes'),(43406,'jetpack_sync_full__queue_finished','1534984317','yes'),(1539,'jetpack_next_sync_time_sync','1572913333','yes'),(1540,'jetpack_next_sync_time_full-sync-enqueue','1572915105','yes'),(1541,'jpsq_full_sync_checkout','0:0','no'),(1542,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:4:\"http\";}','yes'),(1545,'jetpack_callables_sync_checksum','a:33:{s:18:\"wp_max_upload_size\";i:3564436882;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:1474878329;s:8:\"site_url\";i:1474878329;s:8:\"home_url\";i:1474878329;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:1370250195;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:3372415036;s:10:\"post_types\";i:2743400638;s:18:\"post_type_features\";i:2229934750;s:10:\"shortcodes\";i:874430093;s:27:\"rest_api_allowed_post_types\";i:2840212120;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:3920828771;s:11:\"get_plugins\";i:2710174753;s:24:\"get_plugins_action_links\";i:562398649;s:14:\"active_modules\";i:789194291;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:2750504757;s:5:\"roles\";i:1655718943;s:8:\"timezone\";i:4162107118;s:24:\"available_jetpack_blocks\";i:3994703233;s:13:\"paused_themes\";i:223132457;s:14:\"paused_plugins\";i:223132457;}','no'),(13157,'ihaf_insert_header','<meta name=\\\"p:domain_verify\\\" content=\\\"bad9b8eabbf20f457409cb746ff892d1\\\"/>','yes'),(13158,'ihaf_insert_footer','','yes'),(13159,'insert-headers-and-footers_welcome_dismissed_key','1','yes'),(29313,'widget_wpdm_packageinfo_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(29314,'widget_wpdm_categories_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(29315,'widget_wpdm_topdls_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(29316,'widget_wpdm_newpacks_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(29317,'widget_wpdm_catpacks_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(29318,'widget_wpdm_affiliate_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7032,'woocommerce_thumbnail_cropping_custom_width','9','yes'),(7033,'woocommerce_thumbnail_cropping_custom_height','9','yes'),(3959,'wpseo_titles','a:118:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:1;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:12:\"website_name\";s:14:\"Remote Rangler\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:14:\"person_logo_id\";i:0;s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:63:\"http://remoterangler.com/wp-content/uploads/2018/04/RR-Logo.jpg\";s:15:\"company_logo_id\";i:158;s:12:\"company_name\";s:14:\"Remote Rangler\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:13:\"title-wpdmpro\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-wpdmpro\";s:0:\"\";s:15:\"noindex-wpdmpro\";b:0;s:16:\"showdate-wpdmpro\";b:0;s:26:\"display-metabox-pt-wpdmpro\";b:1;s:26:\"post_types-wpdmpro-maintax\";i:0;s:13:\"title-product\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-product\";s:0:\"\";s:15:\"noindex-product\";b:0;s:16:\"showdate-product\";b:0;s:26:\"display-metabox-pt-product\";b:1;s:26:\"post_types-product-maintax\";i:0;s:23:\"title-ptarchive-product\";s:0:\"\";s:26:\"metadesc-ptarchive-product\";s:0:\"\";s:25:\"bctitle-ptarchive-product\";s:0:\"\";s:25:\"noindex-ptarchive-product\";b:0;s:25:\"title-fl-builder-template\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-fl-builder-template\";s:0:\"\";s:27:\"noindex-fl-builder-template\";b:0;s:28:\"showdate-fl-builder-template\";b:0;s:38:\"display-metabox-pt-fl-builder-template\";b:1;s:38:\"post_types-fl-builder-template-maintax\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:22:\"title-tax-wpdmcategory\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:25:\"metadesc-tax-wpdmcategory\";s:0:\"\";s:32:\"display-metabox-tax-wpdmcategory\";b:1;s:24:\"noindex-tax-wpdmcategory\";b:0;s:30:\"taxonomy-wpdmcategory-ptparent\";i:0;s:21:\"title-tax-product_cat\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_cat\";s:0:\"\";s:31:\"display-metabox-tax-product_cat\";b:1;s:23:\"noindex-tax-product_cat\";b:0;s:29:\"taxonomy-product_cat-ptparent\";i:0;s:21:\"title-tax-product_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_tag\";s:0:\"\";s:31:\"display-metabox-tax-product_tag\";b:1;s:23:\"noindex-tax-product_tag\";b:0;s:29:\"taxonomy-product_tag-ptparent\";i:0;s:32:\"title-tax-product_shipping_class\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-tax-product_shipping_class\";s:0:\"\";s:42:\"display-metabox-tax-product_shipping_class\";b:1;s:34:\"noindex-tax-product_shipping_class\";b:0;s:40:\"taxonomy-product_shipping_class-ptparent\";i:0;s:38:\"title-tax-fl-builder-template-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:41:\"metadesc-tax-fl-builder-template-category\";s:0:\"\";s:48:\"display-metabox-tax-fl-builder-template-category\";b:1;s:40:\"noindex-tax-fl-builder-template-category\";b:0;s:46:\"taxonomy-fl-builder-template-category-ptparent\";i:0;}','yes'),(3960,'wpseo_social','a:19:{s:13:\"facebook_site\";s:33:\"http://facebook.com/remoterangler\";s:13:\"instagram_url\";s:34:\"http://instagram.com/remoterangler\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:19:\"og_default_image_id\";i:53;s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),(3961,'wpseo_flush_rewrite','1','yes'),(29321,'__wpdm_welcome','2.9.74','yes'),(3900,'sharing-services','a:2:{s:7:\"visible\";a:0:{}s:6:\"hidden\";a:3:{i:0;s:7:\"twitter\";i:1;s:8:\"linkedin\";i:2;s:8:\"facebook\";}}','yes'),(1607,'_transient_product_query-transient-version','1572913296','yes'),(1701,'gravatar_disable_hovercards','0','yes'),(1703,'verification_services_codes','0','yes'),(1705,'sharing-options','a:1:{s:6:\"global\";a:5:{s:12:\"button_style\";s:9:\"icon-text\";s:13:\"sharing_label\";b:0;s:10:\"open_links\";s:4:\"same\";s:4:\"show\";a:0:{}s:6:\"custom\";a:0:{}}}','yes'),(1694,'_transient_wcc_is_new_label_user','yes','yes'),(1689,'jetpack_protect_blocked_attempts','13380','no'),(5552,'fl_notifications','a:3:{s:4:\"read\";b:1;s:8:\"checksum\";a:10:{i:455558;i:1112446375;i:434899;i:569945551;i:430933;i:2949435807;i:423877;i:1545241705;i:421774;i:3087814018;i:416381;i:3671926234;i:408945;i:2968285658;i:404849;i:308115498;i:375859;i:1690867192;i:352086;i:1712285855;}s:4:\"data\";s:20070:\"[{\"id\":455558,\"date\":\"2019-04-30T15:21:14\",\"date_gmt\":\"2019-04-30T22:21:14\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&#038;p=455558\"},\"modified\":\"2019-04-30T15:21:14\",\"modified_gmt\":\"2019-04-30T22:21:14\",\"slug\":\"spring-update-cherry-blossoms-new-hires-and-new-products\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=spring-update-cherry-blossoms-new-hires-and-new-products\",\"title\":{\"rendered\":\"Spring Update \\u2013 Cherry Blossoms, New Hires, and New Products\"},\"content\":{\"rendered\":\"\\n<div class=\\\"wp-block-image\\\"><figure class=\\\"aligncenter\\\"><img src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/04\\/spring-update-notification.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-455560\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/04\\/spring-update-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/04\\/spring-update-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/figure><\\/div>\\n\\n\\n\\n<p>Hey all! Happy Spring. The Beaver Builder team continues to grow and I\\u2019m excited to introduce two new members. We\\u2019re also growing our product line, and we have recently announced a very early version of a new project we\\u2019ve been working on, Assistant.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/spring-update-cherry-blossoms-new-hires-and-new-products\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/455558\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=455558\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":434899,\"date\":\"2019-02-22T00:04:57\",\"date_gmt\":\"2019-02-22T08:04:57\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&#038;p=434899\"},\"modified\":\"2019-02-22T00:05:00\",\"modified_gmt\":\"2019-02-22T08:05:00\",\"slug\":\"3-reasons-why-wordpress-agencies-love-beaver-builder\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=3-reasons-why-wordpress-agencies-love-beaver-builder\",\"title\":{\"rendered\":\"3 Reasons Why WordPress Agencies Love Beaver Builder\"},\"content\":{\"rendered\":\"\\n<div class=\\\"wp-block-image\\\"><figure class=\\\"aligncenter\\\"><img src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/02\\/why-agencies-love-bb-notification.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-434901\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/02\\/why-agencies-love-bb-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/02\\/why-agencies-love-bb-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/figure><\\/div>\\n\\n\\n\\n<p>Ever wonder why the biggest companies and agencies in the WordPress space choose Beaver Builder? Companies like Crowd Favorite, GoDaddy, and WP Engine? In this <g class=\\\"gr_ gr_44 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation only-ins replaceWithoutSep\\\" id=\\\"44\\\" data-gr-id=\\\"44\\\">article<\\/g> we discuss three reasons why agencies \\u2764\\ufe0f Beaver Builder!<br><\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/3-reasons-why-wordpress-agencies-love-beaver-builder\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/434899\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=434899\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":430933,\"date\":\"2019-02-08T12:10:12\",\"date_gmt\":\"2019-02-08T20:10:12\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&#038;p=430933\"},\"modified\":\"2019-02-08T12:10:15\",\"modified_gmt\":\"2019-02-08T20:10:15\",\"slug\":\"winter-update-blocks-in-beaver-builder-future-plans-and-more\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=winter-update-blocks-in-beaver-builder-future-plans-and-more\",\"title\":{\"rendered\":\"Winter Update \\u2013 Blocks in Beaver Builder, Future Plans, and More\"},\"content\":{\"rendered\":\"\\n<div class=\\\"wp-block-image\\\"><figure class=\\\"aligncenter\\\"><img src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/02\\/winter-update-notification.jpg\\\" alt=\\\"\\\" class=\\\"wp-image-430941\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/02\\/winter-update-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/02\\/winter-update-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/figure><\\/div>\\n\\n\\n\\n<p>Our latest update post is live. We have news about future plans for Beaver Builder and an upcoming module overhaul! Our plugs and footnotes section is well stocked this time around. We\'ve been jumping on a ton of podcasts recently talking about everything from the future of\\u00a0Beaver Builder to digital nomadism! Let\'s get into it\\u2026<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/winter-update-blocks-future-plans-and-more\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/430933\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=430933\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":423877,\"date\":\"2019-01-16T15:51:14\",\"date_gmt\":\"2019-01-16T23:51:14\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&#038;p=423877\"},\"modified\":\"2019-01-16T15:51:14\",\"modified_gmt\":\"2019-01-16T23:51:14\",\"slug\":\"difference-between-gutenberg-and-page-builders-like-beaver-builder-elementor-and-divi\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=difference-between-gutenberg-and-page-builders-like-beaver-builder-elementor-and-divi\",\"title\":{\"rendered\":\"Difference between Gutenberg and Page Builders like Beaver Builder, Elementor, and Divi\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-423885\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/01\\/gutenberg-vs-bb-notification.jpg\\\" alt=\\\"Difference between Gutenberg and Beaver Builder\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/01\\/gutenberg-vs-bb-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/01\\/gutenberg-vs-bb-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>This question has been coming up a lot! In this post, we explain how page builders differ from Gutenberg and the best scenarios to understand when to use one or the other. This might be old news to\\u00a0Beaver Builder users like you, but if you have a client or a friend that is trying to grok the differences this is the post for them.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/difference-between-gutenberg-and-page-builders-like-beaver-builder-elementor-and-divi\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/423877\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=423877\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":421774,\"date\":\"2019-01-09T10:34:00\",\"date_gmt\":\"2019-01-09T18:34:00\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&#038;p=421774\"},\"modified\":\"2019-01-09T10:34:00\",\"modified_gmt\":\"2019-01-09T18:34:00\",\"slug\":\"mental-health-stress-and-burnout-an-interview-with-dr-sherry-walling\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=mental-health-stress-and-burnout-an-interview-with-dr-sherry-walling\",\"title\":{\"rendered\":\"Mental Health, Stress, and Burnout \\u2013 An interview with Dr. Sherry Walling\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-421777\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/01\\/sherry-walling-notification.jpg\\\" alt=\\\"Mental health, stress, and burnout\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/01\\/sherry-walling-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2019\\/01\\/sherry-walling-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>We met Dr. Sherry Walling several years ago at an event and were extremely impressed with her candid discussions about mental health in the entrepreneurial space. I am thrilled that she agreed to work with us on an interview-style blog post discussing some practical ways to improve one\'s mental and emotional wellbeing.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/mental-health-stress-and-burnout-an-interview-with-dr-sherry-walling\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/421774\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=421774\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":416381,\"date\":\"2018-12-14T09:02:44\",\"date_gmt\":\"2018-12-14T17:02:44\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&#038;p=416381\"},\"modified\":\"2018-12-14T09:02:44\",\"modified_gmt\":\"2018-12-14T17:02:44\",\"slug\":\"thoughts-on-gutenberg-and-a-wordcamp-us-recap\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=thoughts-on-gutenberg-and-a-wordcamp-us-recap\",\"title\":{\"rendered\":\"Thoughts on Gutenberg and a WordCamp US Recap\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-416382\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/12\\/wcus-notification.jpg\\\" alt=\\\"\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/12\\/wcus-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/12\\/wcus-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>A few of us from the Beaver Builder team had the opportunity to attend WordCamp US 2018 in Nashville, Tennessee, this week. I\'d like to try something new this year and write down a few thoughts about the event and share photos.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/thoughts-on-gutenberg-and-a-wordcamp-us-recap\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/416381\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=416381\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":408945,\"date\":\"2018-11-23T15:19:24\",\"date_gmt\":\"2018-11-23T23:19:24\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&#038;p=408945\"},\"modified\":\"2018-11-23T15:20:13\",\"modified_gmt\":\"2018-11-23T23:20:13\",\"slug\":\"black-friday-cyber-monday-25-off-everything\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=black-friday-cyber-monday-25-off-everything\",\"title\":{\"rendered\":\"Black Friday \\/ Cyber Monday \\u2013 25% Off Everything\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-408954\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/11\\/black-friday-notification.jpg\\\" alt=\\\"\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/11\\/black-friday-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/11\\/black-friday-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>Happy Turkey Week! We\'re excited to continue our tradition of offering up a major discount on\\u00a0Beaver Builder for Black Friday and Cyber Monday 2018. Don\'t miss out on this limited time offer.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/black-friday-cyber-monday-2018-25-off-everything\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/408945\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=408945\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":404849,\"date\":\"2018-11-08T13:34:29\",\"date_gmt\":\"2018-11-08T21:34:29\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&#038;p=404849\"},\"modified\":\"2018-11-08T13:34:29\",\"modified_gmt\":\"2018-11-08T21:34:29\",\"slug\":\"autumn-update-addressing-all-the-elephants\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=autumn-update-addressing-all-the-elephants\",\"title\":{\"rendered\":\"Autumn Update \\u2013 Addressing all the Elephants\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-404853\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/11\\/autumn-update-notification.jpg\\\" alt=\\\"\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/11\\/autumn-update-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/11\\/autumn-update-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>Why, hello there! It\'s an exciting time in the WordPress world with Gutenberg on the verge of going live. We have a bunch of exciting news to share and new features to announce. Find out more in our Autumn update.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/autumn-update-addressing-all-the-elephants\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/404849\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=404849\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":375859,\"date\":\"2018-07-11T12:30:14\",\"date_gmt\":\"2018-07-11T19:30:14\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&#038;p=375859\"},\"modified\":\"2018-07-11T12:30:14\",\"modified_gmt\":\"2018-07-11T19:30:14\",\"slug\":\"summer-update-sneak-peaks-new-features-and-more\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=summer-update-sneak-peaks-new-features-and-more\",\"title\":{\"rendered\":\"Summer Update \\u2013 Sneak Peaks, New Features, and More\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-375874\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/07\\/bb-summer-2018.jpg\\\" alt=\\\"\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/07\\/bb-summer-2018.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/07\\/bb-summer-2018-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>Hope you\'re having a great summer! We have updates and alpha versions across the board\\u2014Page Builder, Beaver Themer, and the BB Theme are all getting some exciting new features and enhancements.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/summer-update-sneak-peaks-new-features-and-more\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/375859\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=375859\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}},{\"id\":352086,\"date\":\"2018-04-26T11:28:42\",\"date_gmt\":\"2018-04-26T18:28:42\",\"guid\":{\"rendered\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?post_type=fl_notification&#038;p=352086\"},\"modified\":\"2018-04-26T11:28:42\",\"modified_gmt\":\"2018-04-26T18:28:42\",\"slug\":\"happy-4th-birthday-to-beaver-builder\",\"status\":\"publish\",\"type\":\"fl_notification\",\"link\":\"https:\\/\\/www.wpbeaverbuilder.com\\/?fl_notification=happy-4th-birthday-to-beaver-builder\",\"title\":{\"rendered\":\"Happy 4th Birthday to Beaver Builder\"},\"content\":{\"rendered\":\"<p><img class=\\\"aligncenter size-full wp-image-352087\\\" src=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/04\\/bday-notification.jpg\\\" alt=\\\"\\\" width=\\\"318\\\" height=\\\"139\\\" srcset=\\\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/04\\/bday-notification.jpg 318w, https:\\/\\/www.wpbeaverbuilder.com\\/wp-content\\/uploads\\/2018\\/04\\/bday-notification-300x131.jpg 300w\\\" sizes=\\\"(max-width: 318px) 100vw, 318px\\\" \\/><\\/p>\\n<p>For the last few years, we\\u2019ve made a point to celebrate our birthday here at\\u00a0Beaver Builder. It\\u2019s hard to believe, since starting this journey from client work to products, a whole four years have gone by.<\\/p>\\n\",\"protected\":false},\"template\":\"\",\"meta\":{\"_fl_notification\":[\"https:\\/\\/www.wpbeaverbuilder.com\\/happy-4th-birthday-to-beaver-builder\\/\"],\"_links_to\":\"\",\"_links_to_target\":\"\"},\"_links\":{\"self\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\\/352086\"}],\"collection\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/fl_notification\"}],\"about\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/types\\/fl_notification\"}],\"wp:attachment\":[{\"href\":\"https:\\/\\/www.wpbeaverbuilder.com\\/wp-json\\/wp\\/v2\\/media?parent=352086\"}],\"curies\":[{\"name\":\"wp\",\"href\":\"https:\\/\\/api.w.org\\/{rel}\",\"templated\":true}]}}]\";}','yes'),(1558,'jetpack_log','a:1:{i:0;a:5:{s:4:\"time\";i:1524733687;s:7:\"user_id\";i:1;s:7:\"blog_id\";i:145765292;s:4:\"code\";s:24:\"custom_css_4.7_migration\";s:4:\"data\";s:5:\"start\";}}','no'),(1563,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(5549,'_fl_builder_update_info','a:2:{s:4:\"from\";s:7:\"2.1.7.1\";s:2:\"to\";s:7:\"2.2.3.3\";}','no'),(43495,'hmbkp_plugin_version','3.10','yes'),(76250,'woocommerce_placeholder_image','302','yes'),(200967,'woocommerce_version','3.7.1','yes'),(145115,'can_compress_scripts','1','no'),(195745,'_transient_timeout_wc_shipping_method_count_legacy','1574897715','no'),(195746,'_transient_wc_shipping_method_count_legacy','a:2:{s:7:\"version\";s:10:\"1545940231\";s:5:\"value\";i:2;}','no'),(201059,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1572913556','no'),(201060,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;i:0;}','no'),(197500,'_transient_timeout_wc_customer_bought_product_88453bce954c241a30b9e02a5b54c39d','1575274995','no'),(197501,'_transient_wc_customer_bought_product_88453bce954c241a30b9e02a5b54c39d','a:2:{s:7:\"version\";s:10:\"1571319046\";s:5:\"value\";a:0:{}}','no'),(197602,'_transient_timeout_wc_customer_bought_product_9e85e3cb5dbccd9256e98579c812b808','1575288513','no'),(199270,'_transient_timeout_wc_related_151','1573000061','no'),(199271,'_transient_wc_related_151','a:1:{s:51:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=151\";a:3:{i:0;s:2:\"89\";i:1;s:2:\"95\";i:2;s:3:\"183\";}}','no'),(196405,'_site_transient_bsf_get_bundled_products','1','no'),(200833,'_transient_timeout_wpcom_social_media_icons_widget::is_active','1572915354','no'),(200834,'_transient_wpcom_social_media_icons_widget::is_active','0','no'),(199776,'_site_transient_timeout_browser_86181b6ed9a3da9f5af01abb0007299b','1573492721','no'),(199772,'_transient_timeout_jpp_headers_updated_recently','1572974321','no'),(199773,'_transient_jpp_headers_updated_recently','1','no'),(200829,'_transient_timeout_jetpack_idc_allowed','1572915351','no'),(200830,'_transient_jetpack_idc_allowed','1','no'),(146284,'new_admin_email','joewillett44@gmail.com','yes'),(61722,'woocommerce_paypal_settings','a:23:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:115:\"Pay via PayPal; NO ACCOUNT NEEDED! you can pay with your credit/debit card EVEN if you don\'t have a PayPal account.\";s:5:\"email\";s:19:\"Mawillett@yahoo.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:19:\"Mawillett@yahoo.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:10:\"page_style\";s:0:\"\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:14:\"Remote Rangler\";s:12:\"api_password\";s:10:\"tazdevil52\";s:13:\"api_signature\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";}','yes'),(61723,'woocommerce_gateway_order','a:15:{s:4:\"bacs\";i:0;s:6:\"cheque\";i:1;s:3:\"cod\";i:2;s:6:\"paypal\";i:3;s:11:\"ppec_paypal\";i:4;s:6:\"stripe\";i:5;s:11:\"stripe_sepa\";i:6;s:17:\"stripe_bancontact\";i:7;s:13:\"stripe_sofort\";i:8;s:14:\"stripe_giropay\";i:9;s:10:\"stripe_eps\";i:10;s:12:\"stripe_ideal\";i:11;s:10:\"stripe_p24\";i:12;s:13:\"stripe_alipay\";i:13;s:17:\"stripe_multibanco\";i:14;}','yes'),(199811,'_transient_timeout_feed_mod_7f5e1782736d3f328734444c0ca8a918','1572931154','no'),(199812,'_transient_feed_mod_7f5e1782736d3f328734444c0ca8a918','1572887954','no'),(199813,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1572931155','no'),(199814,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Post Status: Matt Mullenweg’s State of the Word, 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=70832\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://poststatus.com/matt-mullenweg-state-of-the-word-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9653:\"<p><a href=\"https://2019.us.wordcamp.org/\">WordCamp US 2019</a> completes its first year in St. Louis, Missouri, where more than 1,300 WordPress community members and leaders are gathered.</p>\n\n\n\n<p>It&#8217;s been the year of Gutenberg in 2019, and in this State of the Word, Matt highlights what has been accomplished, and what comes next.</p>\n\n\n\n<p>Matt kicks off the event with the premiere of <a href=\"http://open.film/\"><em>Open: The Community Code</em></a>, a film about the open source WordPress community.</p>\n\n\n\n<p>Open was really well done, and makes a great intro for this year in review. In the film, Matt said that $10 billion flow through the WordPress economy per year. Yet, it&#8217;s just one of the things that make the WordPress community. WordPress is more than code, more than business. Matt said, &#8220;it&#8217;s more than a tool,&#8221; and that it&#8217;s more like a canvas that, &#8220;anyone can paint on.&#8221; </p>\n\n\n\n<p>Open is a film about WordPress, and what WordPress really is &#8212; not only software, but people, a community, and a mission. Open is, &#8220;is a documentary short created by Producer Andrew Rodriguez and Director Sean Korbitz. ​Executive producers Mark Maunder and Kathy Zant contributed to the production of Open.&#8221;</p>\n\n\n\n<p>They are submitting the documentary to various festivals. Big shout-out to the <a href=\"https://www.wordfence.com/\">WordFence</a> team, the primary producers of this film.</p>\n\n\n\n<h3>The WordPress Community</h3>\n\n\n\n<p>The community continues to evolve, thrive, and adapt to the changing environment.</p>\n\n\n\n<h4>WordCamp US</h4>\n\n\n\n<p>The next WordCamp US will be hosted during the workweek, something I&#8217;m personally thankful for, as it opens up the weekend for family. Also, it will not overlap Halloween. Many people this year, myself included, got in late due to spending the holiday Trick-or-treating with family.</p>\n\n\n\n<p>47 organizers, 122 volunteers, and 90 speakers made WCUS possible. Bluehost, WooCommerce, Jetpack, and Google are this year&#8217;s lead sponsors. Thank you to everyone!</p>\n\n\n\n<h4>Meetups, people, and community endeavors</h4>\n\n\n\n<p>There have been more than 5,000 WordCamp events and several do_action WordPress community events as well.</p>\n\n\n\n<p>One <a href=\"https://heropress.com/\">HeroPress</a> story per month is now being featured on the WordPress blog. </p>\n\n\n\n<p>Matt also honored <a href=\"https://poststatus.com/footnotes/were-sad-to-report-that-alex/\">Alex Mills</a>,  a prolific contributor who passed away this year.</p>\n\n\n\n<h4>WordCamps</h4>\n\n\n\n<p>There will be a total of 141 WordCamps in 2019, including 34 in brand new cities. There are also 17 KidsCamps happening in 2019.</p>\n\n\n\n<p>This year there are at least four WordCamp US speakers under 15 &#8212; speakers younger than WordPress itself.</p>\n\n\n\n<p>In 2020, the first WordCamp Asia is happening, to go alongside WordCamp US and WordCamp Europe. WordCamp Asia is in February, in Bangkok, Thailand. The next WordCamp Europe is in Porto, Portugal.</p>\n\n\n\n<h4>One year ago</h4>\n\n\n\n<p>WordPress 5.0 was released just before WCUS in Nashville (a contentious decision on timing in itself). It was what Matt calls a &#8220;controversial year,&#8221; where we wanted to &#8220;disrupt ourselves.&#8221; Gutenberg was included in core despite a lot of criticism in and outside of the community. He says we learned a lot from the process and it was &#8220;really good practice for future changes we want to make.&#8221;</p>\n\n\n\n<p>He says, &#8220;I understand why we had a lot of this feedback,&#8221; and he&#8217;s excited for where we are going.</p>\n\n\n\n<h4>Ways to get involved in WordPress</h4>\n\n\n\n<p>Matt highlights several ways to get involved in the WordPress community today:</p>\n\n\n\n<ul><li>WordCamp contributor days (including the WCUS one tomorrow)</li><li>Installing the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg</a> plugin, which is now a testing ground for features. About 275,000 people are taking part in this effort.</li><li><a href=\"https://wordpress.org/plugins/design-experiments/\">Design Experiments</a> is a feature plugin to test user interface experiments.</li><li>Matt makes a call for block creation to, &#8220;expand the window for how people are creating WordPress sites today.&#8221; If it&#8217;s JavaScript only it will be able to go easily into the new block directory.</li><li>Help teach others in the community.</li></ul>\n\n\n\n<p>When Matt says <em>why</em> we do all this, he says it&#8217;s to &#8220;help open the web.&#8221; He says the open web is like a pendulum that can swing to be more closed or more open over time.</p>\n\n\n\n<h4>Five for the future</h4>\n\n\n\n<p>There&#8217;s now a dedicated landing page for <a href=\"https://wordpress.org/five-for-the-future/\">Five for the Future</a> to highlight people contributing through this method.</p>\n\n\n\n<h3>Core WordPress Development</h3>\n\n\n\n<p>There have been two core releases in 2019. WordPress 5.1, &#8220;<a href=\"https://wordpress.org/support/wordpress-version/version-5-1/\">Betty</a>&#8220;, brought the &#8220;Site Health&#8221; screen, amongst other feature adjustments and bug fixes. It also included the Cron API, Site Meta for Multisite, and more.</p>\n\n\n\n<p>WordPress 5.2, &#8220;<a href=\"https://wordpress.org/support/wordpress-version/version-5-2/\">Jaco</a>&#8220;, included live block previews, better block management, and the end of the WSOD (White Screen of Death).</p>\n\n\n\n<p>WordPress 5.3 will be released November 12th, and includes more than 150 block editor improvements. Also in 5.3 is the beautiful Twenty Twenty theme. Every six months or so, WordPress will now send admin email verifications to help ensure folks are staying up to date.</p>\n\n\n\n<p>The minimum version of WordPress is now 5.6.20 (ending support for 5.2 and 5.3) and compatibility is now up to PHP 7.4. More than 80% are now on PHP 7 or higher. Matt highlights the still-urgent need to improve update mechanisms and strategies with webhosts and site owners.</p>\n\n\n\n<p>We are currently at 1,122 total unique contributors to WordPress this year. WordPress 5.3 will have more than a hundred contributors than any release before.</p>\n\n\n\n<h3>Gutenberg</h3>\n\n\n\n<p>There have been more than 20 major Gutenberg releases, and the number of Gutenberg contributors is up to 480 from 200 a year ago. Matt says the number of sites using Gutenberg is up more than 2.7 times, and the we just surpassed 50 million posts created in Gutenberg &#8212; increasing at a rate of about 270,000 posts per day, as tracked by Jetpack and therefore a conservative estimate.</p>\n\n\n\n<p>In last year&#8217;s State of the Word Q&amp;A someone asked what percentage of Gutenberg was done, and Matt answered 10%. He says today that he thinks it&#8217;s about 20% done, and highlights how it&#8217;s an ongoing process that he expects to take a decade to build everything he envisions.</p>\n\n\n\n<h4>Gutenberg feature improvements.</h4>\n\n\n\n<p>There are a lot of improvements happening:</p>\n\n\n\n<ul><li>Gutenberg is now fully mobile compatible and many of the core blocks are fully integrated. Offline support and dark mode are also nearly complete.</li><li>The average seconds to load has been cut in have and time to type has reduced from 170ms to 53ms.</li><li>There is now a smoother scrolling motion in Gutenberg.</li><li>Block previews allow you to see what the block you may insert looks like and also allows you to see more information about what the block does.</li></ul>\n\n\n\n<p>And other Gutenberg features coming:</p>\n\n\n\n<ul><li>Social icons will be able to be put anywhere.</li><li>The navigation menu is now going to be an inline Gutenberg block &#8212; a precursor I think to &#8220;customize all the things&#8221;.</li><li>Gradients are part of the Gutenberg experience.</li><li>Core Gutenberg is getting a button block.</li></ul>\n\n\n\n<p>Matt recognizes that we&#8217;ll have thousands of blocks created for Gutenberg, and there will be a block directory which will load inside the Gutenberg editing experience. Patterns will be collections of blocks that people can install in bulk.</p>\n\n\n\n<p>Matt says he thinks in the end, people will be able to create just about any  website layout in just a few clicks.</p>\n\n\n\n<p>Several use cases of Gutenberg were highlighted, from newsletter editors to WordCamps, newsrooms, Microsoft Word converters, and more.</p>\n\n\n\n<h4>Four phases of Gutenberg</h4>\n\n\n\n<p>Matt highlights the four phases of Gutenberg and where we are now.</p>\n\n\n\n<ul><li><strong>Easier editing</strong>: simply making WordPress editing better, has been the focus of the last year.</li><li><strong>Customization</strong>: we are &#8220;in the thick&#8221; of this process, some of which is complete and some (like full inline site editing) yet to come.</li><li><strong>Collaboration</strong>: real-time editing collaboration is coming in the third phase, something I&#8217;m so excited about.</li><li><strong>Multilingual</strong>: core WordPress and core Gutenberg will have complete multilingual support.</li></ul>\n\n\n\n<h3>In conclusion</h3>\n\n\n\n<p>Matt&#8217;s slides for the State of the Word are actually built in Gutenberg.</p>\n\n\n\n<p>The code for the presentation <a href=\"https://github.com/wordpress/slides\">is on Github</a> for anyone to use.</p>\n\n\n\n<p>It&#8217;s been an interesting and challenging year for WordPress. With that, Matt opens up Q&amp;A.</p>\n\n\n\n<p><em>Photo by <a href=\"https://twitter.com/rzen\">Brian Richards</a> for Post Status. Also thank you to <a href=\"https://twitter.com/dimensionmedia\">David Bisset</a> for live tweeting the event while I wrote this.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Nov 2019 22:30:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"WordPress.org blog: 2019 Annual Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2019/11/2019-annual-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1498:\"<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/image-12-1.png?fit=632%2C281&ssl=1\" alt=\"\" class=\"wp-image-7472\" width=\"329\" height=\"146\" /></div>\n\n\n\n<p>It’s time for our annual user and developer survey! If you’re a WordPress user or professional, we want your feedback.</p>\n\n\n\n<p>It only takes a few minutes to <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-english\">fill out the survey</a>, which will provide an overview of how people use WordPress. We&#8217;re excited to announce that this year, for the first time, the survey is also available in 5 additional languages:  <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-french\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-german\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-japanese\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-russian\">Russian</a>, and <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-spanish\">Spanish</a>. Many thanks to the community volunteers who helped with the translation effort!</p>\n\n\n\n<p>The survey will be open for 4 weeks, and results will be published on this blog. All data will be anonymized: no email addresses or IP addresses will be associated with published results. To learn more about WordPress.org’s privacy practices, check out the <a href=\"https://wordpress.org/about/privacy/\">privacy policy</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Nov 2019 21:15:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: BoldGrid Joins Forces with W3 Edge, Acquires W3 Total Cache Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95188\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/boldgrid-joins-forces-with-w3-edge-acquires-w3-total-cache-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5167:\"<p><a href=\"https://www.boldgrid.com\">BoldGrid</a>, a WordPress product and services company, announced today that it has joined forces with <a href=\"https://www.w3-edge.com/\">W3 Edge</a>, the parent company behind the popular <a href=\"https://wordpress.org/plugins/w3-total-cache/\">W3 Total Cache</a> (W3TC) plugin.  BoldGrid acquired the W3TC plugin and retained its creator, Frederick Townes, along with its development and support staff.  The two teams will operate as sister companies but jointly work on the plugin&#8217;s future roadmap.</p>\n\n\n\n<p>&#8220;There are some things a larger team can accomplish for Total Cache that we are targeting right now,&#8221; said Brad Markle, development manager at BoldGrid.  &#8220;After a few more releases of core Total Cache features, the TC team is slated to help accelerate our CRIO Theme Framework on the BoldGrid side.&#8221;</p>\n\n\n\n<p>BoldGrid has a range of plugins, themes, and services for WordPress sites.  The company offers plugins like its post and page builder, themes such as its &#8220;super theme&#8221; CRIO, and services like testing and performance coaching.</p>\n\n\n\n<p>W3 Edge&#8217;s primary product is its W3TC plugin, which serves as the caching solution for over one million WordPress installs.  It is one of the most-used caching plugins available in the official WordPress plugin directory.  </p>\n\n\n\n<p>Many competing caching plugins have been gaining considerable exposure in the past few years.  Some of those are free.  Others, such as WP Rocket, have captured large segments of the premium market.  Managed WordPress hosts also generally offer built-in caching solutions as part of their strategy to build their customer numbers.  The question is whether this move will provide growth for W3TC and any related products or services.</p>\n\n\n\n<h2>The Future of the W3TC Plugin</h2>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/w3tc-stats.png?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a>Screenshot of a new Caching Statistics page for W3 Total Cache</div>\n\n\n\n<p>The BoldGrid team has plans to continue developing the W3TC plugin.  &#8220;Since joining with the awesome team at W3, we have been working to add in some slick new features like Caching Statistics and Lazy Loading,&#8221; said Harry Jackson, product manager at BoldGrid.</p>\n\n\n\n<p>&#8220;We are also looking to partner with theme and plugin developers to ensure the widest range of compatibility for the product, and the WordPress Community,&#8221; said Jackson.  It is unclear what such partnerships would entail and the type of compatibility needed from third-party developers.  The BoldGrid team did not provide further details.</p>\n\n\n\n<p>For some users, the W3TC interface and options can be overwhelming.  &#8220;User Experience is at the top of the list of things we are working on,&#8221; said Sash Ghosh, BoldGrid&#8217;s marketing manager.  &#8220;It can be challenging for some users to fully understand and utilize all the powerful features.  We will soon be adding an on-boarding and configuration guide to the plugin that will hopefully make the plugin accessible to more users.&#8221;</p>\n\n\n\n<h2>Building Trust After a Rocky Past</h2>\n\n\n\n<p>Despite setbacks in 2016, the W3TC plugin has maintained over one million active installs over the past three years.  In March of that year, there was <a href=\"https://wptavern.com/frederick-townes-confirms-w3-total-cache-is-not-abandoned\">concern that the plugin was abandoned</a> after no activity for seven months.  The plugin was not working for many users on the latest version of WordPress.</p>\n\n\n\n<p>Much of the issue seemed to stem from not yet knowing how to scale such a popular product with a small team.</p>\n\n\n\n<p>Later in September of 2016, a <a href=\"https://wptavern.com/high-risk-xss-vulnerability-discovered-in-w3-total-cache-plugin\">high-risk XSS vulnerability</a> was discovered with the plugin.  The plugin developer <a href=\"https://wptavern.com/w3-total-cache-0-9-5-packages-xss-vulnerability-patch-with-major-update\">patched the plugin</a> quickly.  However, the updated versions introduced new bugs and a poor experience for many users.</p>\n\n\n\n<p>While things seem to have been running more smoothly in recent years, there is still some level of distrust within the inner WordPress community.  When asked how they are prepared to address past issues and assure they are looking out for the best interests of users in the future, the BoldGrid team said that security is a top priority.  They also expressed their openness to community feedback for improvement.</p>\n\n\n\n<p>&#8220;As with all big plugins, there are challenges with functionality, features, and security,&#8221; said Jackson.  &#8220;With a bigger team and additional Quality Assurance resources we feel that Total Cache will continue to improve in all the major areas.  We have also introduced a public pull request process to facilitate additional feedback and bug fixes.  Though you can&#8217;t ever guarantee security, our team is very committed and respects our responsibilities to our million-plus users.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Nov 2019 14:01:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.org blog: The Month in WordPress: October 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7449\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2019/11/the-month-in-wordpress-october-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6217:\"<p>October has been a busy month with preparations for WordCamp US as well as the next major release of WordPress. Read on to find out about all that work and more.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.2.4</h2>\n\n\n\n<p>On October 14, <a href=\"https://wordpress.org/news/2019/10/wordpress-5-2-4-security-release/\">WordPress 5.2.4 was released</a> as a security release fixing 6 security issues. The fixes were backported to earlier versions of WordPress as well, so they’re available for sites not yet upgraded to 5.2.</p>\n\n\n\n<p>This kind of release is only possible because people <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">report security issues responsibly</a> so that the Core team can address them. You can find out more specific information about the fixes on <a href=\"https://wordpress.org/support/wordpress-version/version-5-2-4/\">the release documentation page</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress 5.3</h2>\n\n\n\n<p>WordPress 5.3 has seen active development over the past month, with a release date set for November 12. You can <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-rc3/\">download and test the release candidate</a> to get a taste of what to expect—this is largely what final release will look like.</p>\n\n\n\n<p>This is a big release with a number of exciting and important updates. Among them are <a href=\"https://make.wordpress.org/core/2019/10/18/noteworthy-admin-css-changes-in-wordpress-5-3/\">significant changes to the look of the admin interface</a>, enhancements to the block editor that will affect developers of <a href=\"https://make.wordpress.org/core/2019/09/27/block-editor-theme-related-updates-in-wordpress-5-3/\">themes</a> and <a href=\"https://make.wordpress.org/core/2019/09/24/new-block-apis-in-wordpress-5-3/\">plugins</a>, <a href=\"https://make.wordpress.org/core/2019/10/09/introducing-handling-of-big-images-in-wordpress-5-3/\">large improvements</a> to the way that Core <a href=\"https://make.wordpress.org/core/2019/10/11/updates-to-image-processing-in-wordpress-5-3/\">processes images</a>, updates to cater for some functions <a href=\"https://make.wordpress.org/core/2019/10/11/wordpress-and-php-7-4/\">specific to PHP 7.4</a>, improvements to the <a href=\"https://make.wordpress.org/core/2019/09/25/whats-new-in-site-health-for-wordpress-5-3/\">Site Health feature</a>, and many more improvements that are all documented in <a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">the WordPress 5.3 Field Guide</a>.</p>\n\n\n\n<p>In addition to these Core updates, the upcoming major release will also include the new default theme, <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">Twenty Twenty</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? You can contribute by <a href=\"https://make.wordpress.org/core/handbook/testing/\">testing the upcoming release</a>, as well as follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Core Committers</h2>\n\n\n\n<p><a href=\"https://meta.trac.wordpress.org/ticket/4760\">Three new committers have been added</a> to the WordPress Core organizational structure. Core committers are individuals who have direct access to the Core development code repositories in order to publish updates to the software.</p>\n\n\n\n<p>The new committers are Ian Belanger (<a href=\"https://profiles.wordpress.org/ianbelanger/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>ianbelanger</a>), Timothy Jacobs (<a href=\"https://profiles.wordpress.org/timothyblynjacobs/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>timothyblynjacobs</a>), and Joe Dolson (<a href=\"https://profiles.wordpress.org/joedolson/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>joedolson</a>). While Ian’s commit access is specifically for Core themes, both Timothy and Joe have full access to Core. This type of access is only given to individuals who have proved themselves with high-quality contributions and a deep understanding of how the WordPress project works.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The Accessibility Team is <a href=\"https://make.wordpress.org/accessibility/2019/10/26/accessibility-team-representatives-election-for-2020/\">looking for new team representatives</a> for 2020.</li><li><a href=\"https://2019.us.wordcamp.org/\">WordCamp US</a> is happening on November 1-3 and is set to be the largest WordPress event in North America.</li><li>WordCamp Asia, the first flagship event in the region, <a href=\"https://twitter.com/WordCampAsia/status/1187079744409526272\">will be rolling out their next batch of ticket sales</a> on November 1.</li><li>Work continues on Gutenberg, with <a href=\"https://make.wordpress.org/core/2019/10/30/whats-new-in-gutenberg-30-october/\">the latest update</a> including significant updates to the Cover block and many other areas.</li><li>The WordCamp Europe team have published <a href=\"https://make.wordpress.org/community/2019/10/27/update-contributor-orientation-tool/\">an update about the Contributor Orientation tool</a> they worked on earlier this year.</li><li>The WordCamp US team has published <a href=\"https://make.wordpress.org/community/2019/10/28/grow-your-meetup-survey-results-for-wcus/\">the results of their Grow Your Meetup survey</a> ahead of their 2019 event.</li><li>The Theme Review Team <a href=\"https://make.wordpress.org/themes/2019/10/22/meeting-notes-for-tuesday-22nd-october-2019/\">is making plans</a> to implement a curated page for displaying featured themes in the Theme Directory.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Nov 2019 07:28:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Akismet: Version 4.1.3 of the Akismet WordPress Plugin is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2058\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://blog.akismet.com/2019/10/31/akismet-plugin-4-1-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:640:\"<p>Version 4.1.3 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. It contains the following changes:</p>\n\n\n\n<ul>\n<li>We&#8217;ve improved the activation and setup process.</li>\n<li>We&#8217;ve fixed a bug that could have allowed an attacker to make you recheck your Pending comments for spam.</li>\n</ul>\n\n\n\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Oct 2019 15:59:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Jason Schuller Launches DSKO, a Discovery Network for Creators and Brands\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95158\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/jason-schuller-launches-dsko-a-discovery-network-for-creators-and-brands\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6705:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>On October 23, Jason Schuller officially announced that his new side project built on WordPress was open to the public.  The idea behind <a href=\"https://dsko.app\">DSKO</a> was to solve the issue of discoverability for creators and brands across various networks and websites by consolidating everything into a single space.</p>\n\n\n\n<p>The website offers an easy signup process.  DSKO currently features 220 profiles, but that number is sure to grow.  For now, the site is purely about discovering creators and finding out how to contact or follow them through website or social media links.</p>\n\n\n\n<p>The site allows profile creators to set up a bio, image, and even video, such as the one seen on the <a href=\"https://dsko.app/artsnacks/\">ArtSnacks profile</a>.  It will be interesting to see how people use this new WordPress-based site as a branding tool.</p>\n\n\n\n<p>&#8220;I&#8217;ve been asked what the incentive is to re-visit DSKO after you&#8217;ve created a profile,&#8221; said Schuller in a <a href=\"https://twitter.com/jasonpatricksc/status/1189604540443578368\">Twitter update</a>.  &#8220;I have features (some nearly finished) in the works which will make that crystal clear.&#8221;</p>\n\n\n\n<p>Schuller has been active within the WordPress community for over a decade.  He originally launched <a href=\"https://press75.com/\">Press75</a>, a WordPress theme shop, in 2008 with a focus on video-centric themes.  Like several others in the theme business at that time, he had the fortune of good timing.  From 2008 through the next couple of years, theme companies enjoyed little competition and a wide-open market for exploration.  However, business growth plateaued after a while.</p>\n\n\n\n<p>&#8220;I quickly realized that my perception of how to properly launch and scale a project had been skewed by my experience with my WordPress theme business,&#8221; wrote Schuller in a <a href=\"https://medium.com/the-second-time-around/a-brief-history-of-a-wordpress-theme-business-3847e16fcba4\">history of his theme business</a>. &#8220;With Press75, I just built it and they came — a strategy that surprisingly doesn&#8217;t work so well the majority of the time for new ventures.&#8221;</p>\n\n\n\n<p>Unable to duplicate his early success and unhappiness with the direction of WordPress theming, he sold Press75 in 2014.  Since then, he has moved onto new ventures such as <a href=\"https://leeflets.com/\">Leeflets</a>, a single-page website creator on top of WordPress.</p>\n\n\n\n<p>&#8220;There seems to be growing interest in minimalist single-page website solutions for simple profiles (e.g. <a href=\"https://carrd.co/\">Carrd.co</a>, <a href=\"https://linktr.ee/\">Linktr.ee</a>, etc),&#8221; said Schuller.  &#8220;After building [Leeflets] last year, it occurred to me that while all of these options are great for creating an individual site/page, none of them enable the people and brands who are using them to be discovered beyond organic search via Google or sharing a URL across various other networks. My goal was to see if I could solve that by creating a discovery network for people and brands.&#8221;</p>\n\n\n\n<p>The inspiration behind DSKO came from projects like existing single-page website builders.  Schuller said the grid design and navigation were inspired by the image-sharing site <a href=\"https://unsplash.com\">Unsplash</a> while Twitter inspired the profiles.  &#8220;I wanted it to be extremely quick and easy to browse, find and consume profiles,&#8221; said Schuller.</p>\n\n\n\n<p>While borrowing concepts from popular projects already in the wild, he wanted to put his spin on them.  One interesting custom feature is the ability to connect profiles on the DSKO site to other profiles.  For example, a person (creator) can connect his or her profile to a separate brand profile.  This helps with the discoverability aspect by allowing visitors to browse connected profiles.</p>\n\n\n\n<h2>The Technology Running the Network</h2>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>DSKO is a completely front-end interface built on top of WordPress and shows what can be done without sending users to the WordPress backend.</p>\n\n\n\n<p>&#8220;Essentially, DSKO boils down to users, profiles, categories, and tags which makes WordPress the perfect framework,&#8221; said Schuller.  &#8220;The functionality was there, I just needed to create a custom front-end experience to manage it all. Most of my recent projects have utilized WordPress this way, and every time I make something new, I borrow aspects from the previous project.&#8221;  This allows Schuller to bring a project from the concept stage to production more quickly.</p>\n\n\n\n<p>The only third-party plugin running on the site is <a href=\"https://www.admincolumns.com/\">Admin Columns Pro</a>, which makes it easier for Schuller to manage users and content based on custom fields.</p>\n\n\n\n<p>For those who create a profile on DSKO, one uncommon feature is that there is no password field.  Instead, the site provides a &#8220;magic&#8221; login link.  &#8220;Essentially, by removing the concept of a password, I&#8217;ve simplified the onboarding process and am validating a real email address (ensuring a real user) at the same time.&#8221;</p>\n\n\n\n<p>The system generates a unique login token when the user creates a new account.  The token is sent as a link to the user email address.  The link is used to log into the site.  When a session expires or a user logs out, users can get a new link by re-entering their email address.</p>\n\n\n\n<p>Currently, the code behind the site is not available to the public.  However, Schuller did say that he would consider opening up the platform in the future.  Starting from a more mature codebase could help other developers in the WordPress space build interesting projects where similar features are needed.</p>\n\n\n\n<h2>Beyond DSKO: The Present and Future for Schuller</h2>\n\n\n\n<p>Schuller is currently on contract with 10up.  He primarily works with them on the <a href=\"https://www.microsoft.com/inculture/\">Microsoft In Culture</a> project.  &#8220;[It] has been an amazing project to be a part of,&#8221; said Schuller.  Because the contract is only part-time work, it leaves him enough creative freedom to experiment with ideas like DSKO.</p>\n\n\n\n<p>Another creative pursuit is an upcoming WordPress plugin that he&#8217;s building along with Phil Kurth.  It will allow site owners to map custom domains to any post or page on a single WordPress install.  The idea was inspired by his work with Leeflets.  &#8220;It&#8217;s going to be the first WordPress product I&#8217;ve been a part of since I sold my theme business in 2014.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Oct 2019 18:32:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WordPress.org blog: WordPress 5.3 RC3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7439\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2019/10/wordpress-5-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3086:\"<p>The third release candidate for WordPress 5.3 is now available!</p>\n\n\n\n<p>WordPress 5.3 is currently scheduled to be released on&nbsp;<strong><a href=\"https://make.wordpress.org/core/5-3/\">November 12 2019</a></strong>, but we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.3 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.3 release candidate:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-RC3.zip\">download the release candidate here</a> (zip).</li></ul>\n\n\n\n<p>For details about what to expect in WordPress 5.3, please see the <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\">first</a> and <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-rc2/\">second</a> release candidate posts.</p>\n\n\n\n<p>Release Candidate 3 contains improvements to the new About page, bug fixes for the new default theme, Twenty Twenty (see <a href=\"https://core.trac.wordpress.org/ticket/48450\">#48450</a>), and 9 fixes for the following bugs and regressions:</p>\n\n\n\n<ul><li>Four bugs in the block editor have been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/48447\">#48447</a>).</li><li>Three Date/Time related bugs have been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/48384\">#48384</a>).</li><li>A regression in <code>date_i18n()</code> has been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/28636\">#28636</a>).</li><li>An accessibility color contrast regression for primary buttons when using alternate admin color schemes was fixed (see <a href=\"https://core.trac.wordpress.org/ticket/48396\">#48396</a>).</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.3 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.3. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can figure those out before the final release.</p>\n\n\n\n<p>The&nbsp;<a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">WordPress 5.3 Field Guide</a>&nbsp;has also been published, which details the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Oct 2019 21:16:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WPTavern: WordPress Businesses Should Send Out Press Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95161\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wptavern.com/wordpress-businesses-should-send-out-press-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7961:\"<p>I have only been on the job for less than two months. In that time, one thing has become abundantly clear. The largest companies in the WordPress ecosystem send out press releases to news organizations such as WP Tavern. Small businesses may send an email with few details.  Others send nothing at all.</p>\n\n\n\n<p>As a former business owner, I never thought about writing a statement to send to the press.  Now that I am on the other side, I see how I missed huge opportunities to potentially get more coverage and build a relationship with the publications within the WordPress arena.</p>\n\n\n\n<p>Brian Krogsgard of <a href=\"https://poststatus.com\">Post Status</a>, a competing publication of WP Tavern, agrees that companies are missing opportunities.  &#8220;There are many easy wins in PR that only a few companies take advantage of in our space,&#8221; said Krogsgard.</p>\n\n\n\n<p>As a journalist, I am here to tell the truth, regardless of who or what the story is about.  However, there will always be a part of me that wants to see every businesses within the WordPress space succeed.  Therefore, this article is a tutorial that will help businesses within our space get their news items out to the public.  Plus, the larger and more successful the WordPress community grows, the more potential WP Tavern has of growing its audience.  It is healthy for the ecosystem on the whole.</p>\n\n\n\n<p>Because of this symbiotic relationship between the media and product creators, it is important that business owners have a good working relationship with the publications that are writing about them.</p>\n\n\n\n<h2>What Is a Press Release?</h2>\n\n\n\n<p>A press release is sometimes called a &#8220;press statement&#8221; or &#8220;news release.&#8221;  It is an official statement from a company about a particular news item.  In a sense, it is a news story itself.  There are some publications in the larger world of journalism that routinely publish only the press releases sent to them.</p>\n\n\n\n<p>A press release can be in the form of an email, text file, PDF, or even video.  Its purpose is to simply let the press know about your news.</p>\n\n\n\n<h2>Why Should Companies Put Together Press Releases?</h2>\n\n\n\n<p>On occasion, I get a message that says something along the lines of, &#8220;Hey, you&#8217;re giving the big businesses too much coverage. How about throwing the smaller folks a bone?&#8221;  That is a fair question.  However, what is often the problem is that this news by a smaller company may not be on a particular publication&#8217;s radar.</p>\n\n\n\n<p>Enter the press release.</p>\n\n\n\n<p>This is where smaller companies should sneak a peek at larger companies&#8217; playbooks.  Large businesses often have entire public relations (PR) or communications departments.  Sometimes they only have one person in that role.  What those PR positions are doing is getting the word out, and they are making sure the publications within the WordPress realm know about their news.</p>\n\n\n\n<p>Individuals or small companies need not hire someone for communications with the press.  However, at least one person should serve as a representative and handle this role.</p>\n\n\n\n<p>There are many things happening in the WordPress world on any given day.  Even with a press release, there is no guarantee that WP Tavern or another publication will publish your story.  There is a guarantee that they won&#8217;t if they do not know about it.</p>\n\n\n\n<p>A press release is a way to get your foot in the door and should be a part of any company&#8217;s strategy.  </p>\n\n\n\n<p>&#8220;I definitely prefer press packets for product launches, particularly if I can see the key features ahead of time,&#8221; said Krogsgard.  &#8220;Press releases at the time of a news event is fine, but the best company PR is usually done by working with media outlets ahead of a release schedule.&#8221;</p>\n\n\n\n<p>Whether your news is covered will depend on several factors.  The important thing, particularly for smaller businesses, is that you put yourself on a publication&#8217;s radar.</p>\n\n\n\n<p>The team here at WP Tavern will certainly appreciate your company passing along a press release, but do not limit yourself.  Send it to other publications.  Give podcast creators a copy.  Most will be accepting of any news you send their way.</p>\n\n\n\n<h2>How To Write a Press Release</h2>\n\n\n\n<p>Press releases can take a few different forms, but there are some things that should be included with every statement that a business issues.  </p>\n\n\n\n<p>The following is an outline of a basic press release.  You can deviate from the formula a bit, but make sure you include the important information.</p>\n\n\n\n<h3>Contact Information</h3>\n\n\n\n<p>Journalists need to know how to get in touch with you or the appropriate representative for your company for potential follow-up questions.  In the WordPress world, this will primarily be a name and email address.  However, including something like your WordPress Slack username for text chats helps.  </p>\n\n\n\n<p>Most of all, you should provide the best way to contact you.</p>\n\n\n\n<p>This also means being prepared to answer questions if and when you are contacted.  Quotes are like gold to journalists.  It is often the human element that we are after.  The press release opens the door to a conversation.</p>\n\n\n\n<h3>Story Headline</h3>\n\n\n\n<p>Journalists get a lot of emails, notes, and so on.  A press release should contain a headline that is both factual and grabs attention.  It should be a brief summary of what news you want to share.  It is no different than writing a blog post.  In our fast-paced culture, you only have a moment to let someone know that your story is worth reading.  Avoid headlines that look like click-bait, but tell why your news is newsworthy.</p>\n\n\n\n<p>Depending on the news, a sub-headline is often an extra piece of info that helps.  A quick sentence or two that expands on the headline is sometimes necessary to fully explain why the press should continue reading.</p>\n\n\n\n<h3>Dateline</h3>\n\n\n\n<p>A press release should always include a dateline.  There are two types of datelines.  The first type is the date of the press release.  This means journalists can move forward with the story.</p>\n\n\n\n<p>However, you can also put a future date in the dateline.  This is common when you want to prepare publications for an upcoming story that you don&#8217;t want to publicly announce yet.  This is called requesting a news embargo, which means that publications should sit on the story until that particular date.</p>\n\n\n\n<h3>Introduction or Lede</h3>\n\n\n\n<p>A lede is the opening paragraph of a story that answers the five W&#8217;s: who, what, when, where, and why.  This is the moment you should let journalists know what the story is about.  Get to the point in answering those five questions. </p>\n\n\n\n<h3>Body Copy</h3>\n\n\n\n<p>After introducing the story, you should stick to relevant information about the story.  Any data or details that are important for the story should be included.</p>\n\n\n\n<p>&#8220;Another thing that&#8217;s really helpful is screenshots, or short video overviews, and other brand assets that can provide visual appeal to go alongside a story,&#8221; said Krogsgard of writing a compelling press statement.  &#8220;Do you have a revamped interface? Well nicely packaged visual materials really help sell that to convince me that it&#8217;s worth covering — and also to use in the article myself if I do write about it.&#8221;</p>\n\n\n\n<h3>Company Bio or Info</h3>\n\n\n\n<p>Last but certainly not least is including a section that provides details about your company.  Consider it a short biography.  </p>\n\n\n\n<p>One of the worst things for a journalist covering a story is spending hours trying to dig up your company&#8217;s information online instead of working on the story.  Providing that information up front is a huge help to the press.  It also ensures we are getting your information correct.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Oct 2019 19:49:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Not Attending WordCamp US 2019? How to Watch From Home\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95149\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/not-attending-wordcamp-us-2019-how-to-watch-from-home\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3419:\"<p>For those of you unable to attend WordCamp US at St. Louis, Missouri, this weekend, the event will be <a href=\"https://2019.us.wordcamp.org/livestream/\">available for live streaming</a>.  The conference runs from Friday, November 1, through Sunday, November 3.  Friday and Saturday&#8217;s regular sessions, which do not include workshops, will be streamed. </p>\n\n\n\n<p>While previous events like <a href=\"https://wptavern.com/wordcamp-us-2018-livestream-tickets-now-available\">WordCamp US 2018</a> have always been available to watch for free, they required you to sign up before viewing.  This year&#8217;s event is open with no such restriction.  You can simply pick a streaming video and watch.</p>\n\n\n\n<p>There will be multiple livestreams running simultaneously based on the room the parallel sessions are happening in.  The WordCamp organizers have already set up the livestream videos with YouTube. By going to the <a href=\"https://2019.us.wordcamp.org/livestream/friday/\">Friday livestream</a> or <a href=\"https://2019.us.wordcamp.org/livestream/saturday/\">Saturday livestream</a> page, you can set a reminder for any particular room you want to watch via the YouTube embed.</p>\n\n\n\n<p>There are many sessions planned for the <a href=\"https://2019.us.wordcamp.org/schedule/\">camp schedule</a>. The tough problem is going to be figuring out what to watch with overlapping streams from three rooms.  All times on the schedule are in Central Time US (CST).</p>\n\n\n\n<p>If you have a question for a particular speaker, WordCamp US will have a volunteer social media team keeping an eye on the following hashtags on Twitter.  The volunteers may ask your question if time permits for the session.</p>\n\n\n\n<ul><li><a href=\"https://twitter.com/hashtag/AskWCUS220\">#AskWCUS220</a> (Room 220)</li><li><a href=\"https://twitter.com/hashtag/AskWCUS230\">#AskWCUS230</a> (Room 230)</li><li><a href=\"https://twitter.com/hashtag/AskWCUS240\">#AskWCUS240</a> (Room 240)</li><li><a href=\"https://twitter.com/hashtag/AskSOTW\">#AskSOTW</a> (State of the Word)</li></ul>\n\n\n\n<h2>Watch Previous WordCamp US Speakers</h2>\n\n\n\n<p>If you can&#8217;t wait for this year&#8217;s sessions, you can view the <a href=\"https://wordpress.tv/event/wordcamp-us-2018/\">2018 sessions</a> from WordPress TV.  It is a good way to get yourself in the mood for this year&#8217;s event and to look at how much WordPress has changed in the past year.</p>\n\n\n\n<p>One of the most interesting WordCamp videos is always the &#8220;State of the Word&#8221; presented by Matt Mullenweg, co-founder of WordPress.  You can watch last year&#8217;s video below.  What do you expect to see in this year&#8217;s talk?</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-wrap\"></div>\n</div>\n\n\n\n<h2>How Will You Attend WordPress US 2019?</h2>\n\n\n\n<p>Are you planning on attending in person this year?  Or, will you be among the many who are watching from home, the office, or elsewhere?</p>\n\n\n\n<p>Unfortunately, WP Tavern will not be able to cover the event in person this year. However, we will be watching from home like many of you. Feel free to drop your recommended must-watch sessions in the comments.</p>\n\n\n\n<p>If you are unable to attend or watch via livestream, the videos will be available on <a href=\"https://wordpress.tv/\">WordPress TV</a> and <a href=\"https://www.youtube.com/channel/UCpJf6LGZ0a4n9Lj4aVt9spg\">YouTube</a> to watch at your leisure.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 28 Oct 2019 17:18:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Automatic Image Alt Tags and More with Image SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95129\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/automatic-image-alt-tags-and-more-with-image-seo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8901:\"<div class=\"wp-block-image\"><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/image-seo.jpg?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a></div>\n\n\n\n<p>I had the opportunity to test the <a href=\"https://wordpress.org/plugins/imageseo/\">Image SEO plugin</a> over the past week.  Image SEO is a plugin that connects to an accompanying online service that processes images uploaded to a WordPress installation.  The plugin can automatically rename file names, create alt tags for screen readers, and optimize images for Pinterest.</p>\n\n\n\n<p>The plugin is one half of a Software as a Service (SaaS) product.  To use the image processing features, you must sign up for an account on the <a href=\"http://imageseo.io/\">Image SEO website</a>.  Currently, users are provided credits for processing 10 images for free to test out the service.  After that, image processing requires a monthly or annual fee based on a set number of images.  Pricing starts at 4.99€ per month for the lowest tier and ranges up to 59.99€ for the enterprise option.  The service also offers one-time purchases for a given number of images.</p>\n\n\n\n<p>The Image SEO team went public with their plugin and service in April and have been refining the product since.  Aurelio Volle, co-founder and chief marketing officer, said a big part of the process was removing unnecessary features in favor of developing the core product and creating new features.</p>\n\n\n\n<p>&#8220;[Thomas Deneulin] asked me in December 2018 to come and work with him on a project,&#8221; said Volle.  &#8220;They had developed an Image SEO auditing tool but they were not able to sell it. I went through the product, cut so many features, created a new narrative, asked for reviews, etc.&#8221;  Volle&#8217;s work primarily centered around identifying user needs and figuring out what they would be willing to pay for the service.</p>\n\n\n\n<p>Volle said they use all the major facial recognition APIs available on the market, but they are not willing to share their secret recipe at this time.  &#8220;We process the results with an algorithm we created to provide our users with the most relevant data possible for alts and names,&#8221; said Volle.  &#8220;We are still working on the algorithm. The results should be more and more accurate in the future.&#8221;</p>\n\n\n\n<p>When I come across a new WordPress plugin or theme with the term &#8220;SEO&#8221; in the name, I cringe.  It is used so often as a marketing term that it has lost meaning for me.  I&#8217;d like to ignore it like a bad commercial on TV, but it&#8217;s there in the name.  I know it is probably smart to use it for marketing purposes.  Despite my misgivings about the name, I gave Image SEO a serious look and found that I liked its potential.</p>\n\n\n\n<p><em>Would I use the plugin?</em>  Probably not on a personal blog where I control all of the content.  I am a stickler for controlling every aspect of my own content.  I am not within the target audience for the plugin.</p>\n\n\n\n<p>However, I would use the plugin for a large site with multiple writers.  It would work well as part of a quality control system.</p>\n\n\n\n<p>My primary interest was in how well Image SEO auto-created image alt tags.  I have little interest in what search engine benefits the plugin might provide.  I was more interested in how it could help describe images for users who use a screen reader.  A plugin that can accurately add alt tags for users on assistive technologies could be useful in an environment with multiple writers.  I have worked with clients in the past where such a plugin would have been a welcome addition to the site.</p>\n\n\n\n<p>This is not to say the plugin isn&#8217;t useful for single-person sites or those with a small group of writers.  It depends on whether the individual site could use it.  If needed, I would recommend the Image SEO plugin to anyone.</p>\n\n\n\n<p>The free service is currently only available in English.  If you need alt tags in another language, you will need to go with a premium plan.  This would be better opened up to all languages.  It is hard to vouch for the accuracy of non-English alt tags when they are not available in the free plan.</p>\n\n\n\n<h2>How Well Does the Plugin Work?</h2>\n\n\n\n<p>The plugin gives you the option of automatically renaming image file names and setting alt tags.  I would recommend using both of these options.  File names like <code>IMG_2019_345.jpg</code> do not tell search engines or users anything about an image, and the automatic alt tags are the most useful feature of the plugin.</p>\n\n\n\n<p>The plugin doesn&#8217;t make you work to get results.  I tested out 60 images (10 free plus an extra 50 provided by the Image SEO team).  On the whole, the results were fairly accurate.</p>\n\n\n\n<p>However, not every image passed the accuracy test.  Take note of the following screenshot with an image of two people standing at the end of some hallway or structure.  I&#8217;m not exactly sure what they are in, and neither was the service.  The resulting alt tag was &#8220;Archives &#8211; A very dark water &#8211; Art.&#8221;</p>\n\n\n\n<img />A rare inaccurate alt tag added by the plugin.\n\n\n\n<p>I had to throw a few curveballs at the software to see how it stood up.  Technologically, humans are not at the pinnacle of artificial intelligence and recognition software, but we are constantly improving.  The service will undoubtedly improve over time with anything thrown at it.</p>\n\n\n\n<p>My biggest gripe with the plugin is that it automatically prepended the post/page title to the front of every image&#8217;s alt tag when uploading via the post editor.  There is no reason to do this.  The post title often has nothing to do with describing the image for screen readers.  I could see this being useful for product images on an eCommerce site.  This feature should be opt-in.  It would quickly become irritating to manually remove the post title from each image.</p>\n\n\n\n<p>The plugin also allows you to add a description, ID, and other elements for use with Pinterest.  I also could not figure out how to get the attributes to show for my images on anything but attachment pages.  It was unclear how this feature worked on the front end of the site.  Admittedly, it did not bother me because I had no interest in this aspect of the plugin.</p>\n\n\n\n<h2>Bulk Optimizing Images</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Bulk optimizing cat pictures, the most useful type of images for internet usage.</div>\n\n\n\n<p>The Image SEO plugin allows users to bulk optimize images across the entire site.  The bulk optimization tool also allows you to preview the results before deciding on whether you want to make the changes.  This can be an extremely powerful tool if you are running a site with a lot of old images with missing alt tags.</p>\n\n\n\n<p>The biggest thing to watch out for is that running this tool can eat up a ton of image credits.  </p>\n\n\n\n<p>A fair word of warning:  even the optimization preview uses image credits.   I hope this limitation is addressed in some way because it is not clear up front.  Using the feature can catch you off guard and drain money if you simply want to preview the optimization prior to deciding whether you want to go through with the changes.</p>\n\n\n\n<p>The textual description on the bulk optimization page may even lull you into a false sense of security.  It reads, &#8220;No worries, you can get a preview of the results before going further.&#8221;  Fortunately, I was running this on a free account and did not lose real dollars over it.</p>\n\n\n\n<p>It will take a bit of time to run, depending on the number of images, but the bulk optimization tool works flawlessly.</p>\n\n\n\n<h2>How Does the Code Stack Up?</h2>\n\n\n\n<p>I see little reason for concern with the code.  The developers have a clear architecture and hierarchy.  It is forward-thinking and uses modern PHP practices.</p>\n\n\n\n<p>The one caveat is that the plugin does not use the core WordPress HTTP API for handling remote requests to their service.  Users without cURL enabled on their site would be unable to use the plugin, which is likely not an issue for most people.  The team said they went with a custom implementation so they could easily deploy their project on other PHP projects and not be limited by tying the code to WordPress.  They have reported no problems with customers thus far.</p>\n\n\n\n<h2>The Final Verdict</h2>\n\n\n\n<p>There is a lot to like about the plugin.  If you are in it for the SEO benefits, having a system in place to automatically rename ugly image file names and create fairly accurate alt tags, you may find this plugin useful.</p>\n\n\n\n<p>The plugin is not 100% accurate by any means, but you won&#8217;t find that level of accuracy anywhere.  With the 60 images I threw at it, it performed well.  The pricing model also looks fair for what the service offers.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 25 Oct 2019 19:53:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WPTavern: GoDaddy Launches eCommerce Hosting Plan in Partnership with WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95119\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/godaddy-launches-ecommerce-hosting-plan-in-partnership-with-woocommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3955:\"<p>GoDaddy launched an eCommerce tier for their <a href=\"https://www.godaddy.com/hosting/wordpress-hosting\">managed hosting plans</a> on October 22.  The new tier launched in partnership with WooCommerce and offers over $1,500 of commercial extensions and themes for setting up an online shop.</p>\n\n\n\n<p>The eCommerce plan utilizes GoDaddy&#8217;s onboarding process available with all managed hosting plans.  The system automatically sets up the user&#8217;s online shop based on answers provided during onboarding.  This process eases the burden of setting up a fully-functional eCommerce website for users who are new to working with WordPress and WooCommerce.  </p>\n\n\n\n<p>GoDaddy also sets up and maintains a free SSL certificate, a necessity for handling secure payments, as long as the site continues using their managed hosting.  This service is available with some of their other managed hosting plans but not the lower tiers.</p>\n\n\n\n<p>It makes sense that GoDaddy would try to carve out a slice of the WooCommerce pie now that the plugin is powering 30% online shops around the world.</p>\n\n\n\n<p>Neither GoDaddy nor Automattic, the parent company of WooCommerce, has released the details of what the partnership entails.  Aaron Campbell, GoDaddy&#8217;s head of WordPress Ecosystem and Community, confirmed the two companies did have an official partnership.</p>\n\n\n\n<p>The available list of bundled WooCommerce extensions includes the following, but it is unclear what other extensions are available (official extensions number in the hundreds).  Campbell said that some extensions are still rolling out on the platform.</p>\n\n\n\n<ul><li>Advanced Notifications</li><li>WooCommerce Brands</li><li>Checkout Field Editor</li><li>WooCommerce Deposits</li><li>Follow-Ups</li><li>WooCommerce Points and Rewards</li><li>WooCommerce Pre-Orders</li><li>Product Add-Ons</li><li>Product Vendors</li><li>Min/Max Quantities</li><li>Product CSV Import Suite</li><li>Memberships</li><li>Bulk Stock Management</li><li>Subscriptions</li><li>WooCommerce Bookings</li><li>UPS &amp; USPS Shipping Methods</li></ul>\n\n\n\n<p>There are a few popular add-on plugins in the mix, but many store owners could need to purchase additional extensions to build their ideal online shop.  Setup costs could be steeper than some customers anticipate.  Official WooCommerce extensions can range between free and $299 per year.</p>\n\n\n\n<p>The plan also makes several premium <a href=\"https://wordpress.org/themes/storefront/\">Storefront</a> child themes available to customers.  Like extensions, there is currently no public list of which themes are included with hosting.</p>\n\n\n\n<p>The new eCommerce tier runs on the same managed hosting system as other plans, which all allow site owners to run WooCommerce.</p>\n\n\n\n<p>&#8220;From an ease-of-setup standpoint, eCommerce site owners will definitely benefit from the simplified onboarding process that helps them through setting up their store,&#8221; said Campbell.  (Read our <a href=\"https://wptavern.com/inside-look-at-godaddys-onboarding-process-for-managed-wordpress-hosting\">review of GoDaddy&#8217;s onboarding process</a>.)</p>\n\n\n\n<p>Aside from potential help from the onboarding process, the value-add for going with the eCommerce hosting tier is directly tied to the bundled WooCommerce extensions and themes.  Without an official list available, it is hard to speculate whether the upgrade from the next lowest tier, Ultimate, is worth it.  The Ultimate plan runs $5 cheaper each month ($60/year).  It is virtually the same plan minus the WooCommerce extensions.  Plus, you can run a second website on Ultimate. </p>\n\n\n\n<p>Shelling out the extra dollars for the eCommerce tier comes down to personal choice.  Whether GoDaddy is offering an extension or theme that would cost more than the $60 in savings each year should play heavily into that decision.  A single commercial extension or theme will likely exceed that cost.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Oct 2019 22:23:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Possibilities of a CMS in the Spatial Computing Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/possibilities-of-a-cms-in-the-spatial-computing-future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10303:\"<p>In my role at WP Engine, I have the opportunity to travel the world serving as an ambassador for new and interesting ways of using WordPress. I was recently in Raleigh, North Carolina, at All Things Open talking about the possibilities of a CMS in the spatial computing future. This was a lofty topic for 45-minute talk, so I thought I’d share a more in-depth look at a new way to build Extended Reality (XR) experiences with WordPress using a headless approach.</p>\n\n\n\n<h2><strong>The Headless Craze</strong></h2>\n\n\n\n<p>I think many of us see headless primarily as a way to make our sites faster and decouple them from the CMS that controls our content. While true in some cases, this is probably not the most compelling lens to view this concept in when we consider what this means for native apps and Augmented, Virtual and Mixed Reality, more broadly defined as Extended Reality.</p>\n\n\n\n<p>In order to understand how WordPress can power XR experiences we must take a step back and understand what key features developers and designers desire in interactive applications.</p>\n\n\n\n<h2><strong>What is the core appeal of a CMS?</strong></h2>\n\n\n\n<p>Zooming out and looking at what a CMS is at its core highlights a few key features that make my future-looking imagination race. A CMS can be broadly defined as:</p>\n\n\n\n<ul><li>post/page data</li><li>meta associated with data like users and posts</li><li>a secure user system</li><li>a rich content editor</li><li>extendability through plugins/themes/etc.&nbsp;</li></ul>\n\n\n\n<p>WordPress shines brightly across this entire spectrum and, pairing that with open-source flexibility, you can build whatever you can dream. User systems and content are key requirements in interactive and media-rich applications such as XR. An open-source solution like WordPress gives developers greater freedom and more control over the source code and the software meaning they can tweak it to perform how they want, unrestricted by licensing. Another level of freedom was achieved when the new Gutenberg editor was merged into WordPress 5.0, further democratizing the power of the world’s most popular CMS.</p>\n\n\n\n<h2><strong>Possibilities with the New WordPress Editor</strong></h2>\n\n\n\n<p>We’ve spent a lot of time thinking through the front-end benefits in a unified way to control markup using blocks. I think one aspect of the new WordPress editor that has largely been overlooked in front-end development is the data structure of the blocks themselves.&nbsp;</p>\n\n\n\n<p>Pulling data via the REST API typically returns the final markup of a post. This makes it hard for non-html based applications to parse or use the data. You can certainly sanitize the final output, but it doesn&#8217;t provide confidence going forward and often removes important context.</p>\n\n\n\n<p>Before a post renders markup in the front end, there are valuable attributes used to determine that final markup. These options are often just as useful to a non-browser application as they would be for a browser-based experience; it’s just a matter of making sure the content is sanitized for your purposes.</p>\n\n\n\n<p>Let’s imagine we have an audio block with the attributes of <code>src</code>, <code>loop</code>, <code>autoplay</code>, etc. Those attributes are just as important to a non-browser application that expects the same decisions to be made at runtime. By querying a Gutenberg post, one can pull the audio file and also the attributes of how it should behave, leading to the application being unified with browser behavior.</p>\n\n\n\n<p>In the not too distant future, the physical and digital worlds will continue to blend together. As younger generations increasingly interact in ways other than through screens, keyboards, and mice, we should probably begin to create content with that future in mind. Do we really want all that markup saved? Is it even important? If it is, maybe that attribute should be saved, keyed, and exposed via JSON. Markup is really only useful to the front-end rendering.</p>\n\n\n\n<h2><strong>Sound-Only AR Blog Reader Concept</strong></h2>\n\n\n\n<p>Bose is pioneering an interesting approach to augmented reality. They have quickly been updating their product offerings to include 6 Degrees of Freedom (6DoF) sensors inside their headphones and sunglasses to power sound-only AR experiences. This gives us three important mechanics for XR; 6DoF head tracking, private sound experiences, and gesture recognition. I decided to use this technology to illustrate the potential in the data structure of Gutenberg blocks.&nbsp;</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/bose_ar_glasses.jpg?w=627&ssl=1\" alt=\"photo of Bose AR sunglasses\" /></div>\n\n\n\n<p>Using the <a href=\"https://github.com/royboy789/gutenberg-object-plugin\">Gutenberg Object Plugin</a> open-sourced and built by Roy Sivan and contributors, I was able to expose the attribute data in a REST friendly way. I was then able to shift my focus on building mechanics and an MVP application to read a blog without sight. The application puts buttons in 3D space around the visitor. To the right, a “Next Post” button. Directly in front of them, a post body button that plays back a reading of the post data. The voice-to-text technology was made possible by using the <a href=\"https://wordpress.org/plugins/amazon-polly/\">Amazon AI Plugin for WordPress</a>.&nbsp;</p>\n\n\n\n<p>When double-tapping on the frame of the glasses while facing the post body, a voice prompts the visitor to use a nod gesture to playback the post audio. Within 24 hours of sketching the idea, I had a working proof of concept and I attribute that largely to not having to figure out how to prepare my data. Blocks and JSON did it all for me!</p>\n\n\n\n<p>The following image is a sketch of the concept along with the final product.&nbsp;</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/sketch_of_AR_reader_idea.jpg?w=627&ssl=1\" alt=\"sketch of Bose AR blog reader.\" /></div>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/bose_ar_blog_reader.jpg?w=627&ssl=1\" alt=\"final design of Bose AR blog reader prototype.\" /></div>\n\n\n\n<h2><strong>Blocks in Traditional Augmented Reality</strong></h2>\n\n\n\n<p>Spatializing blocks was interesting to me, so I built another proof of concept that demonstrates how 3D prefab objects in a game engine can be associated with 2D blocks on a webpage. Below is a screenshot of a Gutenberg post rendered around my hotel room.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/gutenberg_shared_properties.jpg?w=627&ssl=1\" alt=\"Example showing relation of website and AR experience.\" /></div>\n\n\n\n<p>While a literal 1:1 representation of a webpage in AR illustrates that we can couple our design decisions in and out of a browser, I think we can go a step further. A block can represent many things; so why not use custom blocks to abstract 3D ideas?</p>\n\n\n\n<h2><strong>Non-Standard File Types and Abstracting 3D Objects</strong></h2>\n\n\n\n<p>HTML has a finite list of file types allowed out of the box. That is not to say we are limited to only those options. WordPress is flexible enough to extend to others by simply adding allowed types.&nbsp;</p>\n\n\n\n<p>I’ve been building a music game called <a href=\"https://broken.place\">Broken Place</a> that allows players to interact with real-time music in AR. The sound engine is running an open-source programming language called Pure Data (PD) that has a very specific file type that only it can read. In WordPress, I am managing post content in a custom post type called “songs” where players can upload their PD patch. Players simply log into the website as a contributor user role and upload their patch. The song post is queried from the native app and the patch is loaded.&nbsp;</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/broken_place_ar_screenshot.jpg?w=627&ssl=1\" alt=\"An Augmented reality synthesizer on a beach\" /></div>\n\n\n\n<p>The content submission options open the potential of allowing users to design their own layouts for music interfaces. Imagine in the graphic below, that each of the 3D knobs pictured were associated with a Gutenberg block called “Knob” and each of those knobs have an attribute associated with the sound message being sent to the audio engine. Content creators could determine how the sound messages are mapped in a grid using the column block. When you nest blocks within a column block, the REST response also nests the objects as children of the block and logic can be applied using the JSON structure.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/broken_place_vr.jpg?w=627&ssl=1\" alt=\"A synthesizer interface in VR\" /></div>\n\n\n\n<h2><strong>Narrative Design Potential</strong></h2>\n\n\n\n<p>In post data, we are telling stories; some informational, some personal, but they serve as thought capsules. I dream of a future where posts are much more than just text and images on a screen. Spatializing content provides amazing opportunities for narrative design. I’ve seen this potential represented in the <a href=\"https://wptavern.com/wordpress-amp-plugin-version-1-2-introduces-gutenberg-powered-amp-stories-editor\">AMP Stories</a> and hope that structure could help inspire stories told within 3D physical spaces.&nbsp;</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/06/AMP-stories-editor.png?ssl=1\" alt=\"image of AMP Stories block\" /></div>\n\n\n\n<p>Imagine the same post structure of AMP stories, but for 3D spaces that you can drop in your home or office. <a href=\"https://hubs.mozilla.com/\">Mozilla Hubs</a> is leading the charge in collaborative XR spaces open to all devices and I see interesting potential in combining a WordPress narrative design for Mozilla Hubs to allow shared storytelling experiences.&nbsp;</p>\n\n\n\n<p>I’m excited to continue exploring new ways of using headless WordPress to power XR experiences and help usher in an entirely new era in how we interact with and create digital content.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Oct 2019 13:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Anthony Burchell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: Curated List of Featured Themes Coming to the Theme Directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94278\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/curated-list-of-featured-themes-coming-to-the-theme-directory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6712:\"<p>Themes are the face of WordPress.</p>\n\n\n\n<p>Like it or not, the average user is more interested in what their site looks like when they first begin using the platform than what the thousands upon thousands of plugins can do for them.  Perhaps that&#8217;s unfair to plugin developers &#8212; there are more exciting things happening in the plugin world right now &#8212; but it is what it is.  Themes are visual, and they are what sell the platform to people who just want a site that looks good.</p>\n\n\n\n<p>While WordPress is massive, I can&#8217;t help but think that it is losing out on more users because such users are not always presented with solid options for their site&#8217;s design out of the gate.</p>\n\n\n\n<p>Most of the default Twenty* themes are good introduction themes for first-time users, but they are not to everyone&#8217;s tastes.</p>\n\n\n\n<p>I&#8217;ve worked with numerous users who were setting up their first WordPress site over the years.  Today, many similar people use a pre-installed script to launch WordPress from their web host.  Much of the initial work is done for them.  Often, they are unfamiliar with the WordPress community and what is available out there.  They don&#8217;t know how to find, buy, and install a theme from a reputable commercial theme business.</p>\n\n\n\n<p>What they do is head over to the add-new theme page in their WordPress admin, and they are presented with the <a href=\"https://wordpress.org/themes/browse/featured/\">&#8220;Featured&#8221; themes list</a>.</p>\n\n\n\n<div class=\"wp-block-image\"><img />Featured themes list in the WordPress admin.</div>\n\n\n\n<p>Sometimes a user gets lucky.  Other times it is a crapshoot.</p>\n\n\n\n<p>For several years now, the official WordPress theme directory has shown a random list of themes from the 7,000 or so themes available.</p>\n\n\n\n<p>While themes in the directory undergo a strict code review, there is no quality control on design.  That is a good thing because it allows designers at any level to contribute to the platform.  Open source communities should always have an open contribution process, and themes are one area that many developers get started with WordPress.</p>\n\n\n\n<p>However, the term &#8220;featured&#8221; implies that there is something particularly special about those themes.  They should be distinctive in some way.  They should be a cut above the rest.  That&#8217;s not what we have today, and it&#8217;s not what has been presented to users for the last half decade.</p>\n\n\n\n<p>This is a huge missed opportunity.</p>\n\n\n\n<p>Today, web hosts have started taking over this role.  Whether it is <a href=\"https://wptavern.com/inside-look-at-godaddys-onboarding-process-for-managed-wordpress-hosting\">GoDaddy&#8217;s onboarding process</a> with their custom Go theme or WP Engine with the Genesis framework, hosts are doing the job that WordPress.org couldn&#8217;t manage to get together.</p>\n\n\n\n<h2>How Featured Themes Became Random</h2>\n\n\n\n<p>In the 2013-2014 era, the WordPress theme review team (TRT) was trying to find a way to get more people to contribute to the review process.  By that time, themes had become big business and more theme authors were submitting themes to the directory.  The team implemented a program that allowed the top reviewers each month an opportunity to pick the featured themes.</p>\n\n\n\n<p>The program&#8217;s original intention was for reviewers to select a theme they liked during reviews.  <em>The best-laid plans…</em></p>\n\n\n\n<p>The problem was that nearly all of the top reviewers were theme authors.  Their incentive for doing reviews was to get their themes featured.  Big theme businesses stood the most to gain.  They could put multiple reviewers to work who would knock out review after review.</p>\n\n\n\n<p>It wasn&#8217;t a level playing field.  Even if it had been, the featured themes list was being taken over by business interests via a pay-to-play system.  Those with the most resources would always come out on top.</p>\n\n\n\n<p>Theme companies featured on WordPress.org were already raking in cash at that point.  Zerif Lite, a theme in the popular list just two years later in 2016, <a href=\"https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue\">reported north of $100 thousand per month</a> from upsells.  Even at one-tenth of that number, it is enough incentive for any businesses to play the system to their advantage.</p>\n\n\n\n<p>In April 2014, the <a href=\"https://make.wordpress.org/themes/2014/04/18/theme-review-incentive-program/\">program was shut down</a> because reviewers were choosing their own themes and repeatedly featuring the same themes.  The featured list then began showcasing a new set of random themes every day.</p>\n\n\n\n<p>Randomly-chosen featured themes levels the playing field for every theme author.  However, it doesn&#8217;t showcase the best that WordPress has to offer.</p>\n\n\n\n<h2>A Curated List of Themes Coming Soon</h2>\n\n\n\n<p>The TRT decided in their team meeting yesterday on a change in how featured themes are handled.  Denis Žoljom wrote in the <a href=\"https://make.wordpress.org/themes/2019/10/22/meeting-notes-for-tuesday-22nd-october-2019/\">meeting notes</a> that the team would try a curated list for a few months to see how the WordPress community responds.</p>\n\n\n\n<p>The current plan is to hold a meeting every two or three weeks where people can recommend themes to be featured based on their design, code quality, and potentially other merits.  The team reps would pick from the recommendations.</p>\n\n\n\n<p>The reps are still deciding how to best handle any foreseeable issues before the new program begins.  The team was divided over whether there should be a curated list and what the criteria might be for such a list.  The biggest concern is over the potential for abuse and conflicts of interest.  These and other problems will be something the reps will need to figure out.</p>\n\n\n\n<p>The general consensus seems to be that featured themes would not have any upsells or other commercial aspects.  That could limit the pool of potential themes considerably because many theme authors have some sort of commercial interest in having their themes hosted in the official directory.</p>\n\n\n\n<p>I welcome the change from seeing random themes every day.  I want to see the diamonds in the rough that get buried beneath big business and themes that dominate the landscape in the separate <a href=\"https://wordpress.org/themes/browse/popular/\">popular list</a>.  I want to see theme authors who are building unique themes front and center.</p>\n\n\n\n<p>The big question is whether this change will help users find that perfect theme for their sites.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Oct 2019 18:30:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WordPress.org blog: WordPress 5.3 RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7425\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2019/10/wordpress-5-3-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3740:\"<p>The second release candidate for WordPress 5.3 is now available!</p>\n\n\n\n<p>WordPress 5.3 is currently scheduled to be released on&nbsp;<strong><a href=\"https://make.wordpress.org/core/5-3/\">November 12 2019</a></strong>, but we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.3 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.3 release candidate:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.3-RC2.zip\">download the release candidate here</a>&nbsp;(zip).</li></ul>\n\n\n\n<p>For details about what to expect in WordPress 5.3, please see the&nbsp;<a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>Release Candidate 2 contains improvements to the new About page, and <a href=\"https://core.trac.wordpress.org/query?id=48381%2C48363%2C48022%2C48304%2C48379%2C48087%2C47699&milestone=5.3&group=component&col=id&col=summary&col=status&col=owner&col=type&col=priority&col=milestone&order=priority\">10 fixes</a> for the following bugs and regressions:</p>\n\n\n\n<ul><li>Three bugs contained in RC1 within the block editor have been fixed (see #<a href=\"https://core.trac.wordpress.org/ticket/48381\">48381</a>).</li><li>A bug has been fixed where links within comments did not get the correct <code>rel</code> attribute (see #<a href=\"https://core.trac.wordpress.org/ticket/48022\">48022</a>).</li><li>The <code>scaled-</code> string has been added to file names when images are downsized if determined &#8220;BIG&#8221; (see #<a href=\"https://core.trac.wordpress.org/ticket/48304\">48304</a>).</li><li>The buttons group layout has been fixed in IE11 (see #<a href=\"https://core.trac.wordpress.org/ticket/48087\">48087</a>).</li><li>A bug with <code>boolean</code> <code>false</code> meta values in the REST API has been fixed (see #<a href=\"https://core.trac.wordpress.org/ticket/48363\">48363</a>).</li><li>The error code encountered when the native PHP JSON extension is missing has been adjusted to be unique (see #<a href=\"https://core.trac.wordpress.org/ticket/47699\">47699</a>).</li><li>When uploading files, HTTP error code support has been expanded to include all 5xx errors (see #<a href=\"https://core.trac.wordpress.org/ticket/48379\">48379</a>).</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.3 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.3. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can figure those out before the final release.</p>\n\n\n\n<p>The&nbsp;<a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">WordPress 5.3 Field Guide</a>&nbsp;has also been published, which details the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2019 20:08:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Francesca Marano\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: Gutenberg 6.7 Introduces Storybook and Gradient Backgrounds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95081\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wptavern.com/gutenberg-6-7-introduces-storybook-and-gradient-backgrounds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4533:\"<p>The Gutenberg team released version 6.7 of the Gutenberg plugin last week.  The <a href=\"https://make.wordpress.org/core/2019/10/16/whats-new-in-gutenberg-16-october/\">announcement post</a> listed a little over three dozen bug fixes and several enhancements to existing features.  The most notable features included in the update are Storybook support and gradient backgrounds for the button block.</p>\n\n\n\n<p>All of the bug fixes included in Gutenberg 6.7 were ported to the first <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\">WordPress 5.3 release candidate</a>.  WordPress 5.3 is expected to be released on or around November 12.</p>\n\n\n\n<p>This release also includes updates for experimental features, which can be enabled via the &#8220;Experiments&#8221; screen under the &#8220;Gutenberg&#8221; admin menu. The experimental nav menu block received alignment fixes and now only shows nested menu items when the parent item is selected.</p>\n\n\n\n<h2>First Implementation of Gradient Backgrounds</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Adding a gradient to a button block.</div>\n\n\n\n<p>Version 6.7 introduces a new gradient background feature for the button block.  The long-term plan is to make gradient backgrounds available to other blocks.  The button block is a good testbed for the feature before moving forward with other blocks.</p>\n\n\n\n<p>The problem with introducing gradients is that the team didn&#8217;t go far enough with theme support early in the process.  This is par for the course with Gutenberg development.  New features are implemented without knowing exactly how themes fit into the picture.  It is only after the feature is implemented that theme support is patched on.  Often, this leads to theme authors scrambling to keep up.  It would be better for the feature and the theme support to be developed in tandem with feedback from more theme authors in the process.</p>\n\n\n\n<p>At this stage, gradients are useless in most theme designs, which have custom color schemes that are unlikely to match Gutenberg&#8217;s gradient colors.  At best, the gradients look OK with stock WordPress.  At worst, they&#8217;re garish and an assault on the eyeballs.  Starting with theme support would have at least offered theme authors a chance to make this a better experience for users.</p>\n\n\n\n<p>There is an open <a href=\"https://github.com/WordPress/gutenberg/pull/17841\">pull request on GitHub</a> to introduce theme support.  Theme authors may be able to add custom gradients by version 6.8.</p>\n\n\n\n<p>In the future, this should be a powerful feature that allows users via custom theme gradients to create some unique designs for their posts and pages.  For now, it is only in the &#8220;fun experiment&#8221; stage.</p>\n\n\n\n<h2>Storybook for Developers</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Gutenberg button component stories.</div>\n\n\n\n<p>The Gutenberg development team introduced <a href=\"https://storybook.js.org\">Storybook</a> support for Gutenberg.  Developers can test Storybook support via the <a href=\"https://wordpress.github.io/gutenberg/design-system/components/\">Gutenberg Storybook page</a>.</p>\n\n\n\n<p>Storybook is a development and testing environment for user interfaces.  It allows developers to create, test, and showcase components in an isolated environment apart from the primary platform or application.  This essentially allows developers to build components without the dependencies of the platform before porting them over.  A story within the Storybook system represents the visual state of a component.  Storybooks are collections of stories.</p>\n\n\n\n<p>The Storybook support uses the <a href=\"https://github.com/storybookjs/storybook/tree/next/addons/knobs\">Knobs add-on</a>, which allows developers to edit props dynamically via the Storybook UI.  The <a href=\"https://wordpress.github.io/gutenberg/design-system/components/?path=/story/dashicon--default\">dashicons component</a> is a good place to test this out.  Currently, it accepts values for the icon name, color, and size.</p>\n\n\n\n<p>Marcus Kazmierczak, a principal engineer working on special projects at Automattic, wrote a tutorial and shared a YouTube video on how to <a href=\"https://mkaz.blog/code/coding-a-storybook-story/\">create a story for Gutenberg components</a>.  </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>For developers wanting to be involved, there are many <a href=\"https://github.com/WordPress/gutenberg/issues/17973\">components that still need a story</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2019 17:17:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Coming in WordPress 5.3: What is the PHP Spread Operator?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95062\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/coming-in-wordpress-5-3-what-is-the-php-spread-operator\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6962:\"<p>On October 9, Juliette Reinders Folmer announced on the core WordPress blog that <a href=\"https://make.wordpress.org/core/2019/10/09/wp-5-3-introducing-the-spread-operator/\">WordPress 5.3 will use the spread operator</a>.  The spread operator was one of the <a href=\"https://www.php.net/manual/en/migration56.new-features.php\">new features</a> made available in PHP 5.6, a version released in 2014.</p>\n\n\n\n<p>WordPress <a href=\"https://wptavern.com/wordpress-ends-support-for-php-5-2-5-5-bumps-minimum-required-php-version-to-5-6\">abandoned PHP 5.2 &#8211; 5.5</a> with the release of WordPress 5.2.  This means the core team can start taking advantage of relatively new features, or at least 5-year-old features.  For plugin and theme developers who maintain the same minimum version support as WordPress, they can also start exploring this feature.</p>\n\n\n\n<p>PHP 5.6 introduced two new methods of using the spread operator:</p>\n\n\n\n<ul><li>A Parameter in variadic functions.</li><li>Function argument unpacking of arrays and traversable objects.</li></ul>\n\n\n\n<p>This feature shouldn&#8217;t be confused with unpacking inside of arrays, which is only <a href=\"https://wptavern.com/first-look-at-php-7-4-for-wordpress-developers\">available in PHP 7.4</a>.</p>\n\n\n\n<p>The change in WordPress 5.3 is not expected to affect themes and plugins except in the rare case that a developer is overloading the <code>wpdb::prepare()</code> method.  Developers should <a href=\"https://make.wordpress.org/core/2019/10/09/wp-5-3-introducing-the-spread-operator/\">read the announcement post</a> to dive into what code has changed in core WordPress.</p>\n\n\n\n<p>Developers should check their plugins and themes with debugging enabled in a test environment to check for any notices.  There may be cases where the function signature doesn&#8217;t match.</p>\n\n\n\n<p>The spread operator is a tool, and like any tool, it should be used when it makes sense.  Because it is a language construct, it does offer speed improvements over traditional methods of using a PHP function.</p>\n\n\n\n<p>The remainder of this post will dive into the using the spread operator to help teach WordPress developers how it works.</p>\n\n\n\n<h2>Creating a Variadic Function with the Spread Operator</h2>\n\n\n\n<p>Variadic functions are PHP functions that accept a variable number of arguments passed in.  They have existed for years.  However, they can be confusing without solid inline documentation from the developer who wrote the code.  </p>\n\n\n\n<p>In the past, developers would need to use the <code>func_get_args()</code>, <code>func_get_arg()</code>, or <code>func_num_args()</code> functions to work with variadic functions.  In PHP 5.6, developers can use a parameter such as <code>...$var_name</code> to represent a variable number of parameters.</p>\n\n\n\n<p>Take a look at the following multiplication function. It will accept one, two, three, or even more numbers and multiply each.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\nfunction tavern_multiply( ...$numbers ) {\n\n    $total = 1;\n\n    foreach ( $numbers as $number ) {\n        $total = $total * intval( $number );\n    }\n\n    return $total;\n}\n</pre>\n\n\n<p>If we use that function as shown below, it will display <code>1024</code>:</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\necho tavern_multiply( 2, 4, 8, 16 );\n</pre>\n\n\n<p>This is simple to do with the spread operator.</p>\n\n\n\n<h2>Unpacking Arrays as Function Arguments</h2>\n\n\n\n<p>PHP 5.6 allows developers to unpack arrays and traversable objects as function arguments.  To explain how this works, look at the following multiplication function for multiplying three numbers together.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\nfunction tavern_multiply_three( $x, $y, $z ) {\n        return $x * $y * $z;\n}\n</pre>\n\n\n<p>Generally, you would need to manually pass the <code>$x</code>, <code>$y</code>, and <code>$z</code> parameters directly.  However, there are cases in real-world projects where the data (numbers in this case) would already exist within an array such as:</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n$numbers = [ 3, 6, 9 ];\n</pre>\n\n\n<p>Prior to PHP 5.6, you would need to split that array and pass each value to the function as shown in the following snippet.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\necho tavern_multiply_three( $numbers[0], $numbers[1], $numbers[2] );\n</pre>\n\n\n<p>With PHP 5.6, you can simply pass in <code>...$numbers</code> like so:</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\necho tavern_multiply_three( ...$numbers );\n</pre>\n\n\n<p>Both methods work and will output <code>162</code>.  However, the second method is easier to read and is less prone to typos because it uses fewer characters.</p>\n\n\n\n<h2>Comparing Code Changes in WordPress</h2>\n\n\n\n<p>For a more practical example, let&#8217;s compare a real-world code change in WordPress and how using the spread operator improves the code over other methods.  We can do this by looking at the core <code>current_user_can()</code> function.</p>\n\n\n\n<p>First, see how the code is written in WordPress 5.2 and earlier. </p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\nfunction current_user_can( $capability ) {\n    $current_user = wp_get_current_user();\n\n    if ( empty( $current_user ) ) {\n        return false;\n    }\n\n    $args = array_slice( func_get_args(), 1 );\n    $args = array_merge( array( $capability ), $args );\n\n    return call_user_func_array( array( $current_user, \'has_cap\' ), $args );\n}\n</pre>\n\n\n<p>Without looking at the full function, most developers would assume that <code>$capability</code> is the only accepted parameter for this function.  However, the function accepts a variable number of parameters.  Previously, WordPress had to use <code>func_get_args()</code> to get all the parameters, slice the array, and merge everything back together.</p>\n\n\n\n<p>It is inelegant coding, but it got the job done for old versions of PHP.</p>\n\n\n\n<p>Now compare what the same function looks like in WordPress 5.3.  First, you can see the <code>...$args</code> parameter clearly in the function statement.  You can also see there is no need for the clever coding to pass along a variable number of arguments.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\nfunction current_user_can( $capability, ...$args ) {\n    $current_user = wp_get_current_user();\n\n    if ( empty( $current_user ) ) {\n        return false;\n    }\n\n    return $current_user-&gt;has_cap( $capability, ...$args );\n}\n</pre>\n\n\n<p>The change in WordPress 5.3 is a massive improvement in readability in comparison to earlier versions.  It is nice to see these types of improvements to the core code.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 21 Oct 2019 16:43:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: Product Reviews in the WordPress Ecosystem: Honesty and Genuine Experiences\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94992\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/product-reviews-in-the-wordpress-ecosystem-honesty-and-genuine-experiences\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8398:\"<p><em>I don&#8217;t write fluff pieces. I call &#8217;em like I see &#8217;em. If your project is a dumpster fire, I&#8217;m going to say it&#8217;s a dumpster fire.</em></p>\n\n\n\n<p>Whenever someone comes to me in hopes that I review their product, I give them some form of the preceding paragraph.  It doesn&#8217;t matter if it is a plugin, theme, web host, or some other product.  What matters is that I write my review with honesty and offer my genuine opinion about the thing they built.</p>\n\n\n\n<p>I rarely read most product reviews in the WordPress community anymore.  Far too often the reviewers are not offering their genuine experience with a product.  You get something like &#8220;XYZ is a multi-purpose theme that is built for…yadda, yadda, yadda…&#8221;  <em>Yawn</em>.  It reads as if publishers are trying to sell a product.  If you dig deep enough, you realize that is what many are doing (<em>hello, affiliate links</em>).</p>\n\n\n\n<p>I also have it on good authority (I&#8217;ve seen some of the email exchanges) that a lot of money exchanges hands behinds the scenes for reviews.  Most of the time, publishers are not writing a review of the product.  They are selling you their dreams of a continued working relationship with the product maker.</p>\n\n\n\n<p>There&#8217;s nothing wrong with affiliate links if a publisher loves a product.  There&#8217;s no issue with paid reviews if such reviews are honest experiences with the product.  There&#8217;s also no problem with writing a love letter to your favorite plugin and theme with no financial incentive.</p>\n\n\n\n<p>However, what I generally see are shallow reviews at best.  Many, dare I say most, reviews are not genuine.  They are certainly not real journalism.</p>\n\n\n\n<p>The best place to find genuine reviews are from the user ratings on WordPress.org, assuming the plugin or theme is available there.  Users tend to not hold back, particularly if their review is negative.</p>\n\n\n\n<p>It is tough as an artist (yes, I consider all programmers artists).  I&#8217;ve been on the receiving end of negative reviews of things I&#8217;ve built.  You learn to grow thick skin after a decade of putting your art out into the world.  </p>\n\n\n\n<p>When I was younger, I tended to be a bit hot-headed whenever I got a bad review for something I had built.  After pouring my heart and soul into a project, it cut deep to read a negative review.  I wasn&#8217;t always the most gracious receiver of such reviews.  There are responses I wish I could take back.  Looking at those times now, I wish I would have been more open to hearing what the reviewer was saying.  Even if I disagreed with every word, it did not mean that the person wasn&#8217;t providing me something of value with their review.  </p>\n\n\n\n<p>With age and I hope a little more wisdom, I usually give myself time to think about what someone is saying before I respond.  I allow my thoughts time to develop and mature.  Often, it turns out, critical reviews are far more helpful in making better art than all the five-star ratings in the world.</p>\n\n\n\n<p>When I took the writing position at WP Tavern, I wanted to bring a review format to the website that is missing within our community.  I wanted to do reviews based on my experience as both a user and a developer.  I admit that I was not prepared for a negative reaction to what was in part a negative review.  As always, I gave myself time to read and think over what some commenters were saying.  This article is my response.</p>\n\n\n\n<h2>Reviews Are About Personal Experience</h2>\n\n\n\n<p>One of the things I learned early on as a writer is to not second guess myself, especially when writing an opinion piece.  It is not good for one&#8217;s mental health.</p>\n\n\n\n<p>An opinion piece is about the moment.  It is raw.  It is passionate.</p>\n\n\n\n<p>Writers&#8217; opinions may change over time.  They are human and have the freedom to change their minds later.  However, an opinion-based story should reflect that single moment in time and what the author&#8217;s feelings are at that moment.</p>\n\n\n\n<p>There&#8217;s a common (and wholly incorrect) notion that journalism should be nothing more than facts, that subjectivity is not allowed.  Throughout the several hundred years that some form of journalism has existed, there has never existed a point where the whole of the field was objective.  Even in the early days of U.S. journalism, my country&#8217;s founders published articles in newspapers to sway public opinion on ratifying the U.S. Constitution.  </p>\n\n\n\n<p>Reporting, which is one form of journalism, does not represent the whole.  It is the most objective form of journalism in which the reporter simply tells the news to readers.  We certainly do plenty of that at the Tavern.  However, other forms like editorials, features, and reviews are as important.  These forms take a different approach.</p>\n\n\n\n<p>Reviews are the unwieldy beasts of journalism.  They are hard to tame.  They&#8217;re not always pretty.  However, they should always be true to their nature.  They can bring out angry hoards of fanboys down on the critic (ever read the comments of a critical review of an Apple product?).</p>\n\n\n\n<p>Honest reviews are about personal experience.  If a film critic dislikes the latest movie in the Marvel Cinematic Universe, it is that critic&#8217;s duty to write about their experience watching it.  The reviewer has an obligation to not huddle in fear of Iron Man fanatics who will inevitably send <em>ad hominem</em> attacks his way.  Holding back one&#8217;s opinion within a review is the ultimate sin of a critic.</p>\n\n\n\n<p>Like with any products or forms of art, WordPress plugins and themes are not immune to this same criticism.  Such criticism is even more important when the software costs money and potential buyers may be looking for genuine reviews.</p>\n\n\n\n<p>Disagreement with a review is OK.  Disagreements are more interesting than everyone nodding their heads in unison.  What a boring world it would be if we were all in agreement.</p>\n\n\n\n<p>However, I did want to address comments on my previous review about it being <em>unfair</em>, specifically the unfairness of my personal experience.  It&#8217;s that personal experience that makes a review genuine.  Not everyone&#8217;s experience will be the same.  One person&#8217;s one-star rating does not discount another&#8217;s five stars.  They are equally valid because they represent different experiences.</p>\n\n\n\n<h2>Developers Are Users Too</h2>\n\n\n\n<p>There&#8217;s a common idea in the WordPress community that developers are not users, that our experiences don&#8217;t count because our knowledge and skillsets are more advanced than the average.  At first glance, the argument makes some sense.  However, after giving it some serious thought, I reject the notion.</p>\n\n\n\n<p><em>Martin Scorsese can&#8217;t criticize films because he makes films.  There&#8217;s no way he can feel what the average person does at the cinema.</em></p>\n\n\n\n<p><em>Beyoncé can&#8217;t judge a music competition because she&#8217;s a singer.  She&#8217;s not listening with the ears of a normal human.</em></p>\n\n\n\n<p>Wait; that&#8217;s not right, is it?</p>\n\n\n\n<p>Why is it that developers&#8217; opinions are so easily discounted when they are critical of user experience?  I use WordPress, different themes, and various plugins every day.  I use those that make me happy or serve essential functions.  I don&#8217;t necessarily pick plugins out because I like their code.  I use them because I too am a user in every way that a non-developer is a user.  Having the ability to articulate the problems from a different viewpoint doesn&#8217;t change that.</p>\n\n\n\n<p>In many ways, developers can provide more useful software reviews than &#8220;average&#8221; users because we have some past experience solving the same problems.</p>\n\n\n\n<h2>Offering a Genuine Review</h2>\n\n\n\n<p>One thing you will always get from me is honesty.  When I review a WordPress-related product, you will always read about my personal experience.</p>\n\n\n\n<p>I was fully prepared to say that <em>the gloves are coming off</em>, but the gloves have always been off.  I will never hold back criticism.  I&#8217;m always ready to pile on the praise too.</p>\n\n\n\n<p>But, I won&#8217;t lie to you.</p>\n\n\n\n<p>Who&#8217;s ready to have their theme or plugin reviewed next?</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Oct 2019 16:42:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Chilean News Publication El Soberano First to Launch on Newspack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/chilean-news-publication-el-soberano-first-to-launch-on-newspack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9309:\"<div class=\"wp-block-image\"><img />El Soberano homepage on the Newspack platform.</div>\n\n\n\n<p>Nine months after the <a href=\"https://en.blog.wordpress.com/2019/01/14/newspack-by-wordpress-com/\">announcement of Newspack</a> by WordPress.com, the Chilean news site <a href=\"https://elsoberano.org\">El Soberano</a> became the first publication to launch on the new platform.  On October 16, the small news team <a href=\"https://newspack.blog/2019/10/17/first-publisher-relaunches-using-newspack/\">relaunched with a fresh design</a> powered by the Newspack theme and its newsroom-focused plugins.</p>\n\n\n\n<p>Newspack is a project of Automattic, the parent company of WordPress.com.  Its goal is to work with leaders in the news industry to create a platform that brings WordPress to more newsrooms.  This year, the team behind Newspack has worked with several publications to address obstacles in journalism on the web.</p>\n\n\n\n<p>The Newspack team was primarily advised by <a href=\"https://newspack.blog/2019/04/03/newspack-chooses-12-publishers-new-platform/\">12 publications during their first phase</a>.  Most of those publications are based in the U.S., but a few, such as El Soberano, are from other countries.  The Daily Maverick from Johannesburg, South Africa, and Reveal from the Center for Investigative Reporting from California came on as advisers from the outset.  However, they may also launch on Newspack sometime in the coming months.</p>\n\n\n\n<p>&#8220;We had 10 sites that we&#8217;re going to launch as soon as possible,&#8221; said Steve Beatty, head of Newspack Communications.  &#8220;Of the 10, one dropped out as they changed publishers. So that leaves El Soberano and eight others, and those eight should launch in the coming weeks &#8212; certainly by year&#8217;s end. We&#8217;ve got the next few queued up.&#8221;</p>\n\n\n\n<p>During the initial phase, Beatty said the team was looking for small to medium-sized newsrooms that were covering local news or niche publications.  The development hurdles would likely have been much higher starting with large organizations.</p>\n\n\n\n<p>&#8220;We wanted newsroom leaders who were willing to experiment and try something bold and different, knowing that there was a very real chance of growing pains,&#8221; said Beatty. &#8220;The partners in our pilot newsrooms have been incredibly helpful, patient, understanding and cheerful. I&#8217;m not sure we screened for all that in the application process, but it&#8217;s worked out quite well.&#8221;</p>\n\n\n\n<h2>El Soberano is a Fitting Launch Partner</h2>\n\n\n\n<div class=\"wp-block-image\"><img />Content Director Roberto Bruna (left) and Executive Director Ana Arriagada (right).</div>\n\n\n\n<p>WordPress.com claims its &#8220;mission is to democratize publishing one website at a time.&#8221;  El Soberano, based in Santiago, is a smaller news publication with three people on the current full-time staff.  Their goal is to connect citizens with organizations that will help defend their rights.  The publication covers social movements within the country and to be an outlet for independent journalism.</p>\n\n\n\n<p>&#8220;In our news outlet we believe that only the organized people are sovereign of their destiny,&#8221; said Roberto Bruna, Content Director at El Soberano.  &#8220;Our name &#8216;El Soberano&#8217; is all about <em>el pueblo soberano</em>, the &#8216;sovereign people&#8217; in English.  For us, individual rights and freedoms are crucial. Then, things like a secular state and civil rights, such as the legalization of cannabis, homoparental adoption or the right to a safe abortion, are things we report about.&#8221;</p>\n\n\n\n<p>Bruna further defined the publication&#8217;s goals.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In El Soberano we defend an environment free of contamination; equal opportunities for women, ending the precariousness of their lives; a real pension system for citizens; sexual dissidence, to guarantee their equal rights and inclusion; a new development model based on innovation and knowledge; a secular state and freedom with critical thinking; urban planning and good housing solutions; consumers and a healthy and sustainable market and, finally, mechanisms that aim to create truly democratic constitutions for our countries.</p></blockquote>\n\n\n\n<p>El Soberano does not give space for other interest groups because such groups have the means to make their opinions publicly available.  Instead, its mission is to report on social issues directly from citizens.  &#8220;In them lies the power of decision regarding the direction that our democracies must take,&#8221; said Bruna.</p>\n\n\n\n<h2>Launching El Soberano with Newspack</h2>\n\n\n\n<p>As one of the first publications to launch with a new system, it&#8217;s tough to be a pioneer when a lot is riding on success.  Ana Arriagada, Executive Director of El Soberano, was ready to take the news website to the next level after three years.</p>\n\n\n\n<p>&#8220;When we decided to take the next step and transform El Soberano into a sustainable environment, it was a great achievement for us to be chosen for the Newspack pilot with other eleven news outlets,&#8221; said Arriagada.  &#8220;We were the only news site in Spanish and from Latin America, so we felt very proud.&#8221;</p>\n\n\n\n<p>Arriagada has worked with the Newspack development team over the past six months to help guide them on what tools are needed to run a newsroom.</p>\n\n\n\n<p>The decision to apply for the Newspack pilot program was in part due to avoiding pitfalls they had seen with other digital media websites.  &#8220;Friends with their websites hijacked by a former &#8216;friend&#8217; developer when they try to move to a new platform, custom developments that only the author understood, huge invoices for maintenance hours, or even spending months working on a design that was not possible at the end,&#8221; said Arriagada.  They wanted to avoid other problems such as taking too long to apply changes to the homepage in the fast-paced world of journalism where new stories should be front and center.</p>\n\n\n\n<p>Arriagada said such problems were resolved with Newspack and their team can concentrate on editorial and revenue generation.</p>\n\n\n\n<p>El Soberano originally launched on WordPress.com in January 2016.  Arriagada said it was nearly impossible to find a good selection of templates that were built specifically to solve the problems of the news industry.  &#8220;In Newspack we have the chance to combine different content blocks adapted to our needs, showing content in flexible ways,&#8221; said Arriagada.  &#8220;Now we have tools designed to generate revenue with the experience and best practices from world-class digital media.&#8221;</p>\n\n\n\n<p>Arriagada called working with the Newspack team a &#8220;journey of discovery.&#8221;  In the beginning, it wasn&#8217;t clear how the team would use the information they were collecting from El Soberano and other publications or how the team would resolve issues based on the information provided.  Eventually, they received design proposals, which allowed them to get a feel for what they wanted and to further provide feedback to the Newspack team.</p>\n\n\n\n<p>&#8220;Later, we received the access to the platform where we were able to play around, putting things in order, creating and implementing what we were looking for,&#8221; said Arriagada. &#8220;More feedback, corrections, hopes, and dreams.&#8221;</p>\n\n\n\n<p>She said that working with the <a href=\"https://github.com/Automattic/newspack-blocks\">Content Blocks</a> system allowed her team to better create and assemble their homepage and articles.  &#8220;But maybe the most interesting thing for us,&#8221; said Arriagada, &#8220;was that Newspack team and other news sites from the pilot program proposed things that we don&#8217;t consider for our site, such as an ultra-flexible donation system or workflow systems. We see a lot of power in that collaborative way to develop a product.&#8221;</p>\n\n\n\n<h2>The Future of Newspack</h2>\n\n\n\n<p>Newspack launched <a href=\"https://wptavern.com/newspack-opens-up-application-process-for-phase-two\">phase two of its program</a> in July, which sought to bring 50 more newsrooms to the platform.  The new publications should be announced shortly.</p>\n\n\n\n<p>&#8220;Both the initial pilot group and this group of 50 (or so) are part of the one-year development period, which ends on February 29,&#8221; said Beatty.  &#8220;We&#8217;re still determining what will happen on March 1. We&#8217;ll have a better sense of that when we start working with the 50 and see how quickly we can turn them around.&#8221;</p>\n\n\n\n<p>Like much of Automattic&#8217;s work, it is open source and freely available to the public.  Newspack is a collection of packages to create a platform for newsrooms.  Of note are the following repositories.</p>\n\n\n\n<ul><li><a href=\"https://github.com/Automattic/newspack-theme\">Newspack Theme</a></li><li><a href=\"https://github.com/Automattic/newspack-plugin\">Newspack Plugin</a></li><li><a href=\"https://github.com/Automattic/newspack-blocks\">Newspack Blocks</a></li></ul>\n\n\n\n<p>Developers can find all eight plugins from the <a href=\"https://github.com/Automattic?q=newspack\">Automattic GitHub page</a> if they want to give them a spin.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 17 Oct 2019 17:56:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WordPress.org blog: Empowering Generations of Digital Natives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7413\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8892:\"<p>Technology is changing faster each year. Digital literacy can vary between ages but there are lots of ways different generations can work together and empower each as digital citizens.</p>\n\n\n\n<p>No matter whether you’re a parent or caregiver, teacher or mentor, it’s hard to know the best way to teach younger generations the skills needed to be an excellent digital citizen. If you’re not confident about your own tech skills, you may wonder how you can help younger generations become savvy digital citizens. But using technology responsibly is about more than just technical skills. By collaborating across generations, you can also strengthen all your family members’ skills, and offer a shared understanding of what the internet can provide and how to use it to help your neighborhoods and wider society.&nbsp;<br /></p>\n\n\n\n<h2>Taking Gen Z Beyond Digital Savvy</h2>\n\n\n\n<h3>Open up the dialogue</h3>\n\n\n\n<p>Even if you’re not fully confident in your own tech skills, you can help develop digital citizenship skills in others. If you feel comfortable during everyday conversation, you could describe a tech situation you have come across and ask family members if they have ever experienced something similar. You can give them a chance to share how they handled it or how it made them feel. This can help encourage them to think critically and to react with empathy. And being asked for advice can make them feel appreciated and empowered. But opening up the conversation can also be as simple as asking if they’ve seen anything online lately that they found interesting or wanted to talk about.</p>\n\n\n\n<h3>Share access to free and affordable training</h3>\n\n\n\n<p>Open source content management systems have made online publishing accessible to a more diverse group of people. Dozens of content platforms offer hands-on training at no or low cost. <a href=\"https://wordpress.tv/\">WordPress.tv</a>, <a href=\"https://www.linkedin.com/learning/topics/wordpress\">LinkedIn Learning</a>, and others have low-cost video libraries with thousands of recorded talks and workshops and the WordPress Training team have excellent downloadable lesson plans and materials. These platforms not only feature content that helps develop tech and content creation skills but also content around ethics, diversity and community building.&nbsp;&nbsp;</p>\n\n\n\n<h3>Find a sense of community and belonging</h3>\n\n\n\n<p>One of the disadvantages of increased digitalization is that <a href=\"https://www.theatlantic.com/magazine/archive/2017/09/has-the-smartphone-destroyed-a-generation/534198/\">younger generations and us all may spend less time hanging out in-person.</a> Digital time spent with others is no replacement for in-person interactions. The awareness and mutual understanding which comes from back and forth interaction is needed for positive interpersonal skills. This is hard to replace in digital communities and those skills can only be learned with lots of hands-on practice.&nbsp;</p>\n\n\n\n<h3>Learn the many benefits of volunteering&nbsp;</h3>\n\n\n\n<p>There are WordPress events across the world that provide a great place to learn new skills to share with your families and friends. Some work with schools and colleges to offer special events which are open to all ages. There are also plenty of small ways to volunteer with the WordPress project that can be done at home to practice new skills.</p>\n\n\n\n<p>In addition to attending events where you can learn skills and hang out with others with similar interests, the WordPress ecosystem offers countless opportunities to be actively involved. Professionals, hobbyists, and learners all make a difference by contributing to the ongoing creation of the WordPress platform. Together these people, who are known as contributors, form the <a href=\"https://make.wordpress.org/\">WordPress open source community.</a>&nbsp;</p>\n\n\n\n<h4>WordPress is created by volunteer contributors</h4>\n\n\n\n<p>Not only are these contributors creating an amazingly flexible platform for all to use, it is an environment where you can continue to improve your skills, both technical and interpersonal. Open-source software projects can introduce you to people you would otherwise not get the chance to meet, locally and internationally. If you have a zest for learning, and for finding others to connect with, WordPress has many ways to meet contributors in person!</p>\n\n\n\n<h4>WordPress events are organized by volunteers</h4>\n\n\n\n<p>WordPress community events are volunteer-run. This can be a great way to give back to the project and practice all sorts of skills. Talk to your local event about how you could get involved and if you would like to bring older teenagers and young adults with you. You will not need any pre-existing tech skills to attend these events but they are a great way to discover areas you might want to learn more about.&nbsp;</p>\n\n\n\n<h4>Contributor days offer a great opportunity to get involved</h4>\n\n\n\n<p>These events are specially designed to help you get involved in building the open-source WordPress platform. You can collaborate with other members of its community and find areas that are right for you to use and grow your skills. All of the tasks you will discover at an event can be continued at home and some are easy to get other family members involved in learning and adding in ideas.&nbsp;</p>\n\n\n\n<p>Contributors come from all sorts of backgrounds and locations, some may live near you and others thousands of miles away. Working alongside lots of different cultures and countries can open up new ideas for young people letting them learn new ways of doing things and discover different perspectives. All those different perspectives can cause misunderstandings. But being involved in a global learning community is a great way to practice communicating across cultural boundaries.&nbsp;</p>\n\n\n\n<h4>Getting involved can be rewarding in many (unexpected) ways</h4>\n\n\n\n<p>The most rewarding part of actively taking part in WordPress events is making budding friendships. New connections often turn into long-lasting friendships that are likely to continue for years to come, both online and offline. With a global community, these friendships can potentially lead to lots of international adventures too!</p>\n\n\n\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Getting ready for the <a href=\"https://twitter.com/WordCampBTN?ref_src=twsrc%5Etfw\">@WordCampBTN</a>. I&#8217;ve got my 5kg backpack and one-way ticket to London in a few days <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f929.png\" alt=\"?\" class=\"wp-smiley\" /> What shall I do after? <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://t.co/cdQqeyNWif\">pic.twitter.com/cdQqeyNWif</a></p>— Sabrina Zeidan going to #WCKyiv (@sabrina_zeidan) <a href=\"https://twitter.com/sabrina_zeidan/status/1160265428473712640?ref_src=twsrc%5Etfw\">August 10, 2019</a></blockquote>\n\n\n\n<h3>Make our digital world safer and more inclusive</h3>\n\n\n\n<p>Befriending people from a wide variety of cultures and backgrounds can be an enriching experience in itself. It can also help you make us make more informed decisions. The more we interact with a diverse range of people, the more empathic we become. Some of the most valuable learning that can be offered to Gen Z (and probably to all of us at times) is that what we come across in fast-moving digital communities isn’t always the entire view.&nbsp;</p>\n\n\n\n<h2>All things considered….</h2>\n\n\n\n<p>Anyone who is a digital native may not need encouragement to obtain tech skills. But they may not be aware that digital communities are still communities and <a href=\"https://wordpress.org/news/2019/10/responsible-participation-in-online-communities/\">we need to use the same sorts of people skills for both offline and online locations</a>. Opening up conversations about situations they may experience online that may require them to (re)act responsibly, can encourage them to think critically and act with empathy. Compared to previous generations, digital natives spend substantially more time by themselves while using devices, so encouraging them to join real-life communities, such as WordPress, could be the first step to learning what it means to be a good digital citizen!&nbsp; </p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>, <a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yvettesonneveld</a> &amp; <a href=\"https://profiles.wordpress.org/annemariedh/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annemariedh</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 20:03:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: Mark Davies Joins Automattic as Chief Financial Officer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=95009\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/mark-davies-joins-automattic-as-chief-financial-officer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4364:\"<p>Automattic, the company behind WordPress.com, WooCommerce, and various other products, announced earlier today that Mark Davies has joined the team as its Chief Financial Officer (CFO).  This news comes fresh off the heels of Automattic&#8217;s <a href=\"https://wptavern.com/automattic-acquires-tumblr-plans-to-rebuild-the-backend-powered-by-wordpress\">acquisition of Tumblr</a> in August and a <a href=\"https://wptavern.com/automattic-raises-300m-in-series-d-investment-round-valuation-jumps-to-3-billion\">$300 million Series D investment</a> from Salesforce Ventures in September.  The investment round gave the company a $3 billion valuation after the funding.</p>\n\n\n\n<p>Davies graduated from Western Washington University with a bachelor&#8217;s degree in accounting and earned his MBA in finance at Arizona State University.  He has since worked for large companies in key roles.  Prior to taking the position with Automattic, Davies served as the CFO at Vivint, a North American smart home technology company.</p>\n\n\n\n<p>Vivint was founded in 1999 and claims over $1 billion in annual revenue.  In 2012, The Blackstone Group <a href=\"https://www.reuters.com/article/us-blackstone-acquisition/blackstone-buys-security-firm-vivint-for-over-2-billion-idUSBRE88I0LF20120919\">purchased the company for over $2 billion</a>.  Davies came on board in 2013 and would have played a large role in growing the company&#8217;s annual revenue.</p>\n\n\n\n<p>Vivint announced on October 15 that Davies <a href=\"http://investors.vivint.com/press-releases/press-release-details/2019/Vivint-Smart-Home-Announces-CFO-Transition/default.aspx\">was leaving the company</a>.  &#8220;Mark has created a talented and experienced finance team with a solid track record of growth and financial discipline,&#8221; said Todd Pedersen, co-founder and CEO of Vivint Smart Home. &#8220;We thank him for his six years with the company and wish him the best in his next role.&#8221;</p>\n\n\n\n<p>Before joining Vivint, Davies served as president of global business services with Alcoa.  He was also a member of the Alcoa Executive Council.  Prior to that position, he spent 12 years at Dell Inc. in various roles.  His most recent position was as the managing vice president of strategic programs.  He earlier served as the CFO of Dell&#8217;s Global Consumer Group, which is a $14 billion enterprise with operations across the world.  He held positions with Applied Materials and HP earlier in his career.</p>\n\n\n\n<p>Davies should play a key role in helping Automattic grow beyond its current levels of revenue.  He has the credentials and experience to do so.</p>\n\n\n\n<p>&#8220;Automattic is creating the operating system for the web, from websites to ecommerce to social networks,&#8221; said Matt Mullenweg, founder and CEO of Automattic and co-founder of WordPress. &#8220;As we zoom past 1,100 employees in over 70 countries, we wanted a financial leader with experience taking businesses from hundreds of millions in revenue to billions and even tens of billions, as Mark has. I&#8217;m excited about working alongside such an experienced leader day-to-day to build one of the defining technology companies of this era.&#8221;</p>\n\n\n\n<p>Mullenweg if often cited saying that he would like to see WordPress have an 85% share of the web.  Currently, WordPress runs over 34% of the top 10 million websites.  Automattic would certainly play a role in pushing the platform toward that lofty goal.  He and David Heinemeier Hansson <a href=\"https://wptavern.com/matt-mullenweg-and-david-heinemeier-hansson-discuss-wordpress-market-share-monopolies-and-power-in-open-source-communities\">discussed the dynamics of power</a> in open source communities and whether such a goal was healthy for the web earlier this month.  In the discussion, Mullenweg clarified that 85% was a &#8220;trailing indicator&#8221; rather than a goal.</p>\n\n\n\n<p>Stuart West served as Automattic&#8217;s CFO for the last seven years.  He will continue working within the company, but there is no word on what that new role is. &#8220;I want to thank Stu for his significant contributions to Automattic during his seven and a half years as CFO,&#8221; said Mullenweg. &#8220;He built a talented finance team during a period of 10x growth in staff and revenue and played an essential role in the success of our company.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 15:49:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: New Automattic CFO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=50302\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://ma.tt/2019/10/new-automattic-cfo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:975:\"<p>As <a href=\"https://venturebeat.com/2019/10/16/automattic-nabs-vivint-cfo-to-chase-steep-revenue-growth/\">Venturebeat has picked up</a>, Mark Davies will be leaving <a href=\"https://www.vivint.com/\">Vivint</a> and joining <a href=\"https://automattic.com/\">the merry band</a>. <span>Automattic is creating the operating system for the web, from <a href=\"https://wordpress.com/\">websites</a> to <a href=\"https://woocommerce.com/\">ecommerce</a> to <a href=\"https://tumblr.com/\">social networks</a>. As we zoom past 1,100 employees in over 70 countries, we wanted a financial leader with experience taking businesses from hundreds of millions in revenue to billions (Vivint) and even tens of billions (Alcoa and Dell), <a href=\"https://www.linkedin.com/in/mark-davies-14937a3/\">as Mark has</a>. I’m excited about working alongside such an experienced leader day-to-day to build what I hope will become one of the defining technology companies of the open web era.</span></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 15:28:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WordPress.org blog: WordPress 5.3 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7397\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3142:\"<p>The first release candidate for WordPress 5.3 is now available!</p>\n\n\n\n<p>This is an important milestone as we progress toward the WordPress 5.3 release date. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.3 is currently scheduled to be released&nbsp;on&nbsp;<strong>November 12, 2019</strong>, but we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.3 yet, <strong>now is the time</strong>!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.3 release candidate: </p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.3-RC1.zip\">download the release candidate here</a>&nbsp;(zip).</li></ul>\n\n\n\n<h2>What’s in WordPress 5.3?</h2>\n\n\n\n<p>WordPress 5.3 expands and refines the <strong>Block Editor</strong> introduced in WordPress 5.0 with <strong>new blocks, more intuitive interactions, and improved accessibility</strong>. New features in the editor increase design freedoms, provide additional layout options and style variations to allow designers complete control over the look of a site.</p>\n\n\n\n<p>This release also introduces the <strong>Twenty Twenty</strong> theme giving the user more design flexibility and integration with the Block Editor. </p>\n\n\n\n<p>In addition, WordPress 5.3 allows developers to work with <strong>dates and timezones</strong> in a more reliable way and prepares the software to work with <strong>PHP 7.4</strong> to be release later this year. </p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.3 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme file to 5.3. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can figure those out before the final release.</p>\n\n\n\n<p>The&nbsp;WordPress 5.3 Field Guide&nbsp;will be published within the next 24 hours with a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;This release also marks the&nbsp;<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a>&nbsp;point of the 5.3 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 21:18:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Francesca Marano\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WordPress.org blog: Responsible Participation In Online Communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7386\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2019/10/responsible-participation-in-online-communities/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9139:\"<p>In our <a href=\"https://wordpress.org/news/2019/10/becoming-better-digital-citizens-through-open-source/\">first article in this series</a>, we highlighted the WordPress mission to democratize publishing. WordPress introduced a tool to independent and small publishers who did not have the resources of the larger publishing platforms. Access to a free content management system to create websites has empowered thousands of people to find their voice online. People have been able to share their enthusiasm for hobbies, causes, products and much more. Through these different voices, we can encourage understanding, spark creativity, and create environments where collaboration can happen. But as we build more digital communities, it&#8217;s easy to forget that online safety is a group effort.</p>\n\n\n\n<p>Digital literacy is also part of being a good digital citizen, but it’s more than just being able to do basic actions with your mobile device. Digital literacy refers to the range of skills needed to do online research, set up web accounts, and find solutions for fixing devices among other things. But to be able to enjoy more of the digital world safely and responsibly &#8211; to be a good digital citizen &#8211; we need to be able to:&nbsp;</p>\n\n\n\n<ul><li><strong>navigate</strong> vast amounts of information without getting overwhelmed;</li><li><strong>evaluate</strong> a variety of perspectives;</li><li><strong>connect</strong> with people with respect and empathy;</li><li><strong>create</strong>, curate and share information.</li></ul>\n\n\n\n<p>We will need our offline analytical and social skills to make that happen.&nbsp;</p>\n\n\n\n<h2>Here’s some best practices our community members have shared!</h2>\n\n\n\n<h3>Online or offline, let empathy be your compass</h3>\n\n\n\n<p>The hardest part about all of this is the anonymity of online interactions. Without that face-to-face feedback of saying something mean to another person&#8217;s face, it&#8217;s easy to upset the people you&#8217;re trying to communicate with.</p>\n\n\n\n<p>In our daily lives in the offline world, comments may be more tempered and slow to anger  in disagreements. Visual cues will help us determine how a remark is perceived. That, in turn, helps us adjust our behaviour Action, reaction, it’s how we learn best.</p>\n\n\n\n<p>Online, however, the experience is different. A keyboard does not protest if we type angry, hate-filled messages. A screen does not show any signs of being hurt. The lack of physical human presence combined with the anonymity of online alter-egos can be a formula for disrespectful and unfriendly behavior. It is good to remind ourselves that behind the avatars, nicknames and handles are real people. The same empathy we display in our in-person interactions should apply online as well.</p>\n\n\n\n<h3>Critically evaluate your sources&nbsp;</h3>\n\n\n\n<p>We all have times when we consume information with limited research and fact-checking. For some of us, it feels like there’s no time to research and compare sources when faced by a sea of online information. For others, there may be uncertainty about where to start and what to consider. But, without a bit of skepticism and analytical thinking, we run the risk of creating narrow or incorrect understanding of the world. With a little effort we can curb the sharing of fake news and biased information, particularly on topics that are new to us or that we’re not familiar with.</p>\n\n\n\n<p>Misinformation can spread like wildfire. Ask these simple questions to evaluate information online:&nbsp;</p>\n\n\n\n<ul><li>who is the source of the information?</li><li>is it plausible?</li><li>is the information fact or just an opinion?</li></ul>\n\n\n\n<h3>Own our content</h3>\n\n\n\n<p>In this day and age, it’s never been easier to just copy, paste and publish somebody else&#8217;s content. That doesn’t mean that we should! Publishing content that is not truly ‘yours’ in wording and tone of voice is unlikely to build a connection with the right audience. But, just as important, using someone else’s content may breach copyright and potentially intellectual property rights. </p>\n\n\n\n<p>For more information about intellectual property, <a href=\"https://www.wipo.int/about-ip/en/\">visit the World Intellectual Property Organization website</a>.</p>\n\n\n\n<h3>Don’t breeze past terms and conditions</h3>\n\n\n\n<p>Have you ever signed up for an online service (to help you distribute published content or accept payments) that was offered at no cost? In our fast-paced digital lives, we tend to want to breeze past terms and conditions or warning information and often miss important information about what will happen with our data. </p>\n\n\n\n<p>When we are given a contract on paper, we tend to read and re-read it, giving it a greater priority of our time. We may send it to other people for a second opinion or seek further review before signing. Remarkably, we rarely do that with online agreements. As a result, we may be putting our online privacy and security at risk. (WordPress uses a <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/gpl-primer/\">GPL license</a>, and only collects usage data that we never share ever.).</p>\n\n\n\n<h3>Keep your website safe and healthy</h3>\n\n\n\n<p>If you would like to own your voice online, you also need to protect your reputation by securing your publishing platform. Websites can face security attacks. Hackers may seek to obtain access through insecure settings, outdated plugins and old software versions, and in extreme cases can try to scam your visitors. And leaking customer data, may even lead to legal consequences.</p>\n\n\n\n<p>On top of that, websites ‘flagged’ for security issues, can lead to high bounce rates and eventual loss of search rankings. This can all affect how search engines rate or even block your site. </p>\n\n\n\n<p>Good practices to keep your website safe include changing your safe password regularly, installing security software, an SSL certificate and keeping the core software, plugins and themes up to date. This will not guarantee that you will keep hackers out, so always keep several backups of your site, ideally both offline and online.</p>\n\n\n\n<p>That is just website security in a tiny nutshell. If you would like to learn more about keeping websites safe, you may want to check out some of these resources and many more videos at WordPress.tv.</p>\n\n\n\n<h2>Join in and help make the web a better place!</h2>\n\n\n\n<p>As part of Digital Citizenship Week, we would like to encourage you to learn and share skills with your colleagues, friends and family members. That way, we all become more informed of potential issues and how to reduce the risks. Together we can make it easier to navigate the web more effectively and securely!</p>\n\n\n\n<h3>Additional resources</h3>\n\n\n\n<h4>Site health check</h4>\n\n\n\n<p>WordPress 5.2 introduced pages in the admin interface to help users run health checks on their sites. They can be found under the Tools menu.</p>\n\n\n\n<h4>Security and SSL&nbsp;</h4>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/2019/01/23/victor-santoyo-security-and-ssl-whats-the-difference/\">Video recording of a presentation by Victor Santoyo about website security and SSL</a>.</li><li><a href=\"https://wordpress.tv/2017/08/31/jessica-gardner-ssl-what-it-is-how-to-do-it-and-why-you-should-care/\">Video recording of a presentation by Jessica Gardner about why you should care about SSL and how to use it.</a></li><li><a href=\"https://wordpress.tv/2018/02/03/adam-warner-the-personal-and-website-security-mindset/\">Video recording of a presentation by Adam Warner about the personal and website security mindset</a>.</li><li><a href=\"https://wordpress.tv/2018/07/05/miriam-schwab-content-security-policies-a-whole-new-way-of-securing-your-website-that-no-one-knows/\">Video recording of a presentation by Miriam Schwab about content security policies</a>.</li><li><a href=\"https://en.support.wordpress.com/https-ssl/\">More information about SSL licenses on WordPress.com</a>.</li><li><a href=\"https://wordpress.org/plugins/search/SSL\">SSL plugins in the WordPress plugin repository</a>.</li></ul>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/chanthaboune/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chanthaboune</a>, <a href=\"https://profiles.wordpress.org/yvettesonneveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yvettesonneveld</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a>,  <a href=\"https://profiles.wordpress.org/muzhdekad/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>muzhdekad</a> <a href=\"https://profiles.wordpress.org/alexdenning/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>alexdenning</a>,&nbsp;<a href=\"https://profiles.wordpress.org/natashadrewnicki/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>natashadrewnicki</a>, <a href=\"https://profiles.wordpress.org/oglekler/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>oglekler</a>, and Daria Gogoleva.</p>\n\n\n\n<p><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 19:41:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: Kioken Blocks Partners with Gutenslider Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94895\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/kioken-blocks-partners-with-gutenslider-plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2972:\"<p><a href=\"https://wordpress.org/plugins/kioken-blocks/\" rel=\"noopener noreferrer\" target=\"_blank\">Kioken Blocks</a> creator Onur Oztaskiran is teaming up with Niklas Jurij Plessing, a Berlin-based developer and author of the <a href=\"https://wordpress.org/plugins/gutenslider/\" rel=\"noopener noreferrer\" target=\"_blank\">Gutenslider</a> plugin, to improve both products under the same roof. Oztaskiran said the partnership is not an acquisition but rather a unification of efforts that may eventually result in combining under the same name.</p>\n<p>&#8220;Our short term plan is to work on each other&#8217;s plugins to improve them according to our individual areas of expertise (me in design, marketing and user happiness, him in development and more technical stuff where I fall short), and then fully collaborate on plugins and themes,&#8221; Oztaskiran said.</p>\n<p>Gutenslider will remain a standalone plugin and will not be merged into Kioken Blocks. Both products will share similar resources in terms of functionality and support. The team plans to work on porting their products to be ready for WordPress.org&#8217;s upcoming Block Directory. Pro users of Kioken Blocks will be able to use the pro functionalities of Gutenslider and the team plans to make Gutenslider work like an extension to Kioken Blocks.</p>\n<p>&#8220;Gutenslider is pretty extensive at it is, and we thought it deserves to keep going as a standalone block and plugin, since it will be also available in the upcoming Block Directory for Gutenberg,&#8221; Oztaskiran said. &#8220;We will handle it as another product even though it is under the same roof as Kioken Blocks. We will continue adding new features to that block and improve the experience and Kioken Blocks will gain new blocks as well, but not as extensive as Gutenslider. There&#8217;s a possibility we could rename the block but that&#8217;s not the case at the moment.&#8221;</p>\n<p>Oztaskiran said he sees a lot of possibilities in Gutenslider, because it is not just an image and video slider but capable of adding different types of block content on top of the slides, such as paragraphs, headings, images, galleries, products, and more.</p>\n<p></p>\n<p>&#8220;Since the future of Gutenberg, as we see it, is going to be shaped around the Block Directory in the editor, our plan is focusing more blocks on that directory, with the Kioken Blocks as a builder on top of them as a plugin,&#8221; Oztaskiran said. &#8220;The final goal is building an ecosystem for WordPress users who have adopted the new editor &#8211; products, plugins and themes with a streamlined interface and experience. Dev partnerships are the first step of it.&#8221;</p>\n<p>Oztaskiran could not confirm if the product catalog will be combining under one company name. The final decision has not yet been made but he said it is likely that they will combine under the Kioken branding sometime in the future for marketing their WordPress products.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 19:03:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: WordPress 5.2.4 Release Addresses Several Security Issues\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94983\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/wordpress-5-2-4-release-addresses-several-security-issues\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2982:\"<p>The core WordPress team released version 5.2.4 of WordPress on October 14.  The release addresses six security issues that were all privately reported through WordPress&#8217; <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure procedure</a>.</p>\n\n\n\n<p>Like any security release, users should update immediately to the latest version to keep their sites secure.</p>\n\n\n\n<p>For those with automatic updates enabled, the new version is already rolling out to sites. All major branches of WordPress from version 3.7 to 5.2 received the new security fixes. If automatic updates are not enabled, users should update from the &#8220;Updates&#8221; screen under &#8220;Dashboard&#8221; in the WordPress admin.  Otherwise, users can download WordPress from the <a href=\"https://wordpress.org/download/release-archive/\">release archive</a> and manually <a href=\"https://wordpress.org/support/article/updating-wordpress/\">run an update</a> to make sure their site is not at risk to what are now publicly-known vulnerabilities.</p>\n\n\n\n<p>In the <a href=\"https://wordpress.org/news/2019/10/wordpress-5-2-4-security-release/\">release announcement</a>, the following security issues were noted. They were corrected in all updated versions.</p>\n\n\n\n<ul><li>Stored cross-site scripting (XSS) could be added from the Customizer screen.</li><li>An issue that allowed stored XSS to inject JavaScript into <code>&lt;style></code> tags.</li><li>A bug that allowed unauthenticated posts to be viewed.</li><li>A method to use the <code>Vary: Origin</code> header to poison the cache of JSON <code>GET</code> requests (REST API).</li><li>A server-side request forgery (SSRF) with how URLs are validated.</li><li>Issues with referrer validation in the WordPress admin.</li></ul>\n\n\n\n<p>For developers who want to dive more into the code changes, the <a href=\"https://github.com/WordPress/wordpress-develop/compare/5.2.3…5.2.4\">changeset is available on GitHub</a>.  Most changes should not affect plugins or themes.  However, it is worth noting that the <code>static</code> query property was removed in this release.  This removal affects both the <code>WP</code> and <code>WP_Query</code> classes.  Developers should test their plugins against this version to make sure nothing is broken if their projects rely on this property.  It is unlikely that many plugins rely on this query variable.</p>\n\n\n\n<p>WordPress 5.2.4 also includes a couple of other bug fixes.  One <a href=\"https://core.trac.wordpress.org/changeset/46074\">removes a line of code</a> that makes an extra call to the <code>wp-sanitize.js</code> script in the script loader.  The second fix <a href=\"https://core.trac.wordpress.org/changeset/46473\">addresses an issue</a> where the directory path wasn&#8217;t normalized on Windows systems, which led to the <code>wp_validate_redirect()</code> function removing the domain. This fixes a bug created in WordPress 5.2.3.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 15:52:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: Meetup.com Introduces RSVP Fees for Members, WordPress Meetup Groups Unaffected by Pricing Changes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94958\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://wptavern.com/meetup-com-introduces-rsvp-fees-for-members-wordpress-meetup-groups-unaffected-by-pricing-changes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4936:\"<p><a href=\"https://www.meetup.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Meetup</a>, a subsidiary of <a href=\"https://www.wework.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WeWork</a>, has announced a significant change to its pricing structure that will require members to pay a $2 fee in order to RSVP to events. The change will go into effect in October, ostensibly to distribute meetup costs more evenly between organizers and members. Some meetup organizers have received the following <a href=\"https://www.meetup.com/lp/paymentchanges?mpId=9038\" rel=\"noopener noreferrer\" target=\"_blank\">message</a>:</p>\n<blockquote><p>Meetup is always looking for ways to improve the experience for everyone in our community. One of the options we are currently exploring is whether we reduce cost for organizers and introduce a small fee for members.</p>\n<p>Beginning in October, members of select groups will be charged a small fee to reserve their spot at events. The event fee can be paid by members or organizers can cover the cost of events to make it free for members.</p></blockquote>\n<p>Organizers have the option to subsidize the $2 fee for members who RSVP so that it is entirely free for those who attend, but for popular groups this can become cost prohibitive. If 1,000 members RSVP for an event, the organizer would owe $2,000 to host it.</p>\n<p>The new pricing does not apply to non-profit groups or Pro Networks. WordPress community organizer Andrea Middleton has <a href=\"https://twitter.com/andmiddleton/status/1183868783116472320\" rel=\"noopener noreferrer\" target=\"_blank\">confirmed</a> that Meetup&#8217;s pricing changes will not affect groups that are part of the <a href=\"http://meetup.com/pro/wordpress/\" rel=\"noopener noreferrer\" target=\"_blank\">official WordPress chapter</a>. In 2018, <a href=\"https://make.wordpress.org/community/2019/04/18/2018-meetup-survey/\">WordPress had 691 meetup groups in 99 countries</a> with more than 106,000 members. According to Meetup.com, groups in the official chapter now number 780 in 2019. Middleton encouraged any outlying WordPress meetup groups to join the official chapter by <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/meetup-program-basics/\" rel=\"noopener noreferrer\" target=\"_blank\">submitting an application</a>.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/Screen-Shot-2019-10-14-at-9.28.03-PM.png?ssl=1\"><img /></a></p>\n<p>Meetup organizers and members who are affected by the pricing hike are unhappy about the changes. If the <a href=\"https://twitter.com/securestep9/status/1183798804371386369\" rel=\"noopener noreferrer\" target=\"_blank\">angry responses on Twitter</a> are any indication, people are leaving the platform in droves. Many organizers have announced that they are cancelling their subscriptions and looking to migrate to other platforms, such as <a href=\"https://kommunity.com/\" rel=\"noopener noreferrer\" target=\"_blank\"> Kommunity</a> or <a href=\"http://gettogether.community\" rel=\"noopener noreferrer\" target=\"_blank\">gettogether.community</a>, an open source alternative for managing local events.</p>\n<p>No competitor has the reach or brand recognition that Meetup has. Some groups will inevitably resort to using Eventbrite or Facebook to manage local meetups but neither of these are focused on promoting or growing these types of local events. Discovery and new meetup marketing are Meetup.com&#8217;s forte, but the platform has been fairly stagnant when it comes to improving the user experience.</p>\n<p>&#8220;This new move is quite onerous on users, and WP is lending support to the platform, which is proprietary and for-profit,&#8221; Morten Rand-Hendriksen <a href=\"https://twitter.com/mor10/status/1183853556647903232\" rel=\"noopener noreferrer\" target=\"_blank\">said</a>. &#8220;The optics and messaging are not great. When tools we use start to act in problematic ways, and we keep using them, we are tacitly agreeing to and even promoting that behavior even if it is not directly affecting us.&#8221;</p>\n<p>Andrea Middleton responded, acknowledging that WordPress&#8217; use of certain platforms will sometimes involve compromise.</p>\n<p>&#8220;It&#8217;s true that WordPress contributors use various proprietary and for-profit tools to help us achieve various outreach and coordination goals,&#8221; Middleton said. &#8220;I think we strive for a balance between expediency and idealism, but of course any compromise results in a loss of one or the other.&#8221;</p>\n<p>Given the immediate backlash following Meetup.com&#8217;s announcement of the pricing changes, it would not be surprising to see the decision reversed. The company characterized the move as an &#8220;exploration&#8221; and plans to roll it out gradually to more meetups. For organizers who are looking to charge more on top of the fee to cover event costs, Meetup said this feature is coming soon.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 04:12:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WordPress.org blog: WordPress 5.2.4 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7372\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2019/10/wordpress-5-2-4-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3666:\"<p><a href=\"https://wordpress.org/wordpress-5.2.4.zip\">WordPress 5.2.4</a> is now available! This security release fixes 6 security issues.<br /><br />WordPress versions 5.2.3 and earlier are affected by these bugs, which are fixed in version 5.2.4. Updated versions of WordPress 5.1 and earlier are also available for any users who have not yet updated to 5.2.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<ul><li>Props to&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://evanricafort.com/\">Evan Ricafort</a>&nbsp;for finding an issue where stored XSS (cross-site scripting) could be added via the Customizer.</li><li>Props to&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://codesymphony.co/\">J.D. Grimes</a>&nbsp;who found and disclosed a method of viewing unauthenticated posts.</li><li>Props to&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://weston.ruter.net/\">Weston Ruter</a>&nbsp;for finding a way to create a stored XSS to inject Javascript into style tags.</li><li>Props to David Newman for highlighting a method to poison the cache of JSON GET requests via the Vary: Origin header.</li><li>Props to <a href=\"http://eugenekolo.com/\">Eugene Kolodenker</a> who found a server-side request forgery in the way that URLs are validated.</li><li>Props to Ben Bidner of the WordPress Security Team who discovered issues related to referrer validation in the admin.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing</a> the vulnerabilities, which gave us time to fix them before WordPress sites could be attacked.</p>\n\n\n\n<p>For more info, browse the full list of changes on Trac or check out the Version&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://wordpress.org/support/wordpress-version/version-5-2-4/\">5.2.4 documentation page</a>.<br /><br />WordPress 5.2.4 is a short-cycle security release. The next major release will be&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/5-3/\">version 5.3</a>.<br /><br />You can <a href=\"https://wordpress.org/wordpress-5.2.4.zip\">download WordPress 5.2.4</a> or visit <code>Dashboard → Updates</code> and click <code>Update Now</code>. Sites that support automatic background updates have already started to update automatically.<br /><br />In addition to the security researchers mentioned above, thank you to everyone who contributed to WordPress 5.2.4:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/darthhexx\">darthhexx</a>, <a href=\"https://profiles.wordpress.org/davidbinda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, and <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2019 21:54:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jake Spurlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: AMP Project Joins OpenJS Foundation Incubation Program\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94906\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wptavern.com/amp-project-joins-openjs-foundation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5565:\"<p>Last week at the AMP Contributor Summit 2019 in New York City, the AMP project <a href=\"https://blog.amp.dev/2019/10/10/amp-is-joining-the-openjs-foundation-incubation-program/\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> that it will be joining the <a href=\"https://openjsf.org\" rel=\"noopener noreferrer\" target=\"_blank\">OpenJS Foundation</a> incubation program. OpenJS was formed by a recent merger between the JS Foundation and the Node.js Foundation. AMP will join webpack, jQuery, Mocha, Node.js, ESLint, Grunt, and other open source projects that have OpenJS as their legal entity.</p>\n<p>Over the past year, AMP has been evolving its governance, moving to an open, consensus-seeking governance model in 2018, similar to the one <a href=\"https://nodejs.org/en/about/governance/\" rel=\"noopener noreferrer\" target=\"_blank\">adopted by the Node.js project</a>. One of the primary objectives of changing AMP&#8217;s governance and moving to a foundation was to foster a wider variety of contributions to the project and its technical and product roadmap. The incubation process will address AMP&#8217;s lack of contributor diversity and inclusion, as only past or current Google employees have commit rights on the code base.</p>\n<p>In recognition of how the project&#8217;s connection to Google has been problematic for adoption, the company is transferring AMP&#8217;s domains and trademarks to OpenJS, which is a vender-neutral organization, as outlined in the FAQs of OpenJS&#8217; <a href=\"https://openjsf.org/blog/2019/10/10/openjs-foundation-welcomes-amp-project-to-help-improve-user-experience-on-the-web/\" rel=\"noopener noreferrer\" target=\"_blank\">announcement</a>:</p>\n<blockquote><p>The OpenJS Foundation prides itself on vendor neutrality. Our vested interest resides solely in the ecosystem and the projects that contribute to that ecosystem. The OpenJS Foundation’s Cross Project Council is committed to supporting AMP in addressing these issues and ensure continued progress. During onboarding, AMP will also go through a multi-step process including adopting the OpenJS Foundation Code of Conduct, transferring domains and trademarks and more to graduation from incubation. AMP has made incredible strides by adopting a new governance model and by joining the OpenJS Foundation, they’ve made their intentions clear-AMP is committed to its vision of “A strong, user-first open web forever.”</p></blockquote>\n<p>Google is, however, a Platinum member of the OpenJS Foundation with annual dues of more than $250K per year. This membership guarantees the company direct participation in running the Foundation, a guaranteed board seat, and have a direct voice in budget and policy decisions. Google plans to maintain its team of employees who contribute full time to the AMP project.</p>\n<p>According to <a href=\"https://twitter.com/tobie\" rel=\"noopener noreferrer\" target=\"_blank\">Tobie Langel</a>, a member AMP&#8217;s advisory committee, one of the changes in moving to the OpenJS Foundation is AMP&#8217;s governance model will no longer be under the purview of Google and the ultimate goal is that Google will cease funding AMP directly. Instead, the company will direct funds through the foundation and work to remove the project&#8217;s Google dependencies for its infrastructure and tooling.</p>\n<h3>OpenJS Aims to Disentangle AMP Runtime from Google Cache</h3>\n<p>Gaining full infrastructural independence from Google will be no small feat for AMP contributors. The OpenJS Foundation&#8217;s announcement states that one of the long term goals in moving the project over is to disentangle the AMP runtime from the Google AMP Cache:</p>\n<blockquote><p>The end goal is to separate the AMP runtime from the Google AMP Cache. The Project is currently in the incubating stage and Project leaders are still determining the next steps. Ideally, hosting and deployment of the AMP runtime to the CDN would fall under the purview of the OpenJS Foundation, much like the foundation is handling other projects CDNs, such as the jQuery CDN.  </p>\n<p>Untangling the runtime from the cache is a complex endeavor requiring significant investments of time and effort which would be planned and implemented in collaboration with the foundation and industry stakeholders during and after incubation.</p>\n<p>The OpenJS Foundation CPC is committed to having a long-term strategy in place to address this issue by the end of AMP’s incubation.</p></blockquote>\n<p>AMP is used on more than <a href=\"https://blog.amp.dev/2018/02/13/amps-new-horizons/\" rel=\"noopener noreferrer\" target=\"_blank\">30 million domains</a>. While many see this news as a positive move towards AMP&#8217;s eventual independence from Google, it doesn&#8217;t remove Google&#8217;s power to compel publishers to support the AMP standard by prioritizing AMP pages in search results. The news was received with skepticism by commenters on <a href=\"https://news.ycombinator.com/item?id=21242890\" rel=\"noopener noreferrer\" target=\"_blank\">Hacker News</a> and <a href=\"https://www.reddit.com/r/firefox/comments/dhgwlb/google_takes_amp_to_the_openjs_foundation/f3nxmq0/\" rel=\"noopener noreferrer\" target=\"_blank\">Reddit</a>, who deemed it &#8220;mostly meaningless window-dressing,&#8221; given how aggressively Google is pushing AMP in its search engine. AMP remains deeply controversial and moving it to a foundation that is heavily financially backed by Google is not enough to win over those who see it as Google&#8217;s attempt to shape the web for its own interests.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2019 20:52:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: Inside Look at GoDaddy’s Onboarding Process for Managed WordPress Hosting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94901\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/inside-look-at-godaddys-onboarding-process-for-managed-wordpress-hosting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8199:\"<p>The Tavern was provided access to test GoDaddy&#8217;s onboarding process, which is a part of its <a href=\"https://www.godaddy.com/offers/wordpress-hosting\">managed WordPress hosting</a> service.  The company has revamped its system since we <a href=\"https://wptavern.com/godaddy-launches-new-onboarding-experience-for-wordpress-customers\">covered it in 2016</a>.  The web host has had time to garner feedback since then and build an easy-to-use, headache-free way to launch WordPress sites.</p>\n\n\n\n<p>GoDaddy has been making waves in the WordPress community over the past few years and is quickly becoming one of the most dominant businesses in the ecosystem.  Several of the company&#8217;s free WordPress themes consistently rank in the theme directory&#8217;s <a href=\"https://wordpress.org/themes/browse/popular/\">popular list</a>.  Most of them are child themes of their popular <a href=\"https://wordpress.org/themes/primer/\">Primer theme</a>, which boasts 40,000+ active installs when not counting child theme installs.  The real count should be north of 200,000.</p>\n\n\n\n<p>GoDaddy provided access to its Pro 5+ tier, which is its highest level of managed WordPress hosting.  They have three lower tiers, each at different price points and with fewer features.  Regular pricing for the tiers range between $9.99 and $34.99 per month.  All levels include automatic backups, security scans, caching, and a slew of other features that are not always easy to figure out for new users.</p>\n\n\n\n<p>Aaron Campbell , GoDaddy’s head of WordPress Ecosystem &amp; Community, said that their hosting service is growing quickly.  &#8220;We were among the largest WordPress hosts when we launched our Managed WordPress Hosting in 2014,&#8221; he said.  &#8220;Within 2 years our offering became the largest Managed WordPress platform in the world and remains so to this day.&#8221;</p>\n\n\n\n<p>GoDaddy launched its basic onboarding process later in 2014.  They iterated on that version through 2018.  &#8220;When Gutenberg went into core in WordPress 5.0 we saw an opportunity to redefine the WordPress onboarding and imagine what a &#8216;Gutenberg native&#8217; experience would look like,&#8221; said Campbell.  &#8220;Meaning, do what Gutenberg uniquely enables us to do over what was possible before&#8211;things that couldn&#8217;t be done by making existing themes Gutenberg &#8216;compatible&#8217; we had to build from the ground up.&#8221;</p>\n\n\n\n<p>Based on my experience with the product, I would have no qualms about recommending it to new or even more experienced users.  Even those with no experience running WordPress can create a new site without trouble in far less time than it&#8217;d take to go through the normal, more complex process.</p>\n\n\n\n<h2>How the Onboarding Process Works</h2>\n\n\n\n<p>One of the hardest things to know prior to signing up for a service and handing over your credit card number is how the service works. For this reason, I snagged a few screenshots and will do a quick walk-through of the process.</p>\n\n\n\n<p>Once you are ready to build your new website, the service provides a &#8220;Set up&#8221; link that sends you to GoDaddy&#8217;s onboarding screen.  There are three paths to choose from.  The first and most prominent is to view the available templates, which is the path that new users would choose.  You can also manually set up WordPress or migrate an existing site.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>When selecting to view templates, the service presents over 50 options to choose from.  The templates are further grouped by category based on the type of site a user might want to create.  I chose the &#8220;Beckah J.&#8221; option because it worked for my idea of creating a life-wellness site.</p>\n\n\n\n<p>Each of the templates are created from GoDaddy&#8217;s new Go WordPress theme, which is currently <a href=\"https://github.com/godaddy-wordpress/go\">available via GitHub</a> and <a href=\"https://themes.trac.wordpress.org/ticket/75007\">awaiting review</a> for placement in the official WordPress theme directory.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>After selecting a template, the process moves to a preview screen, which has buttons to switch between desktop, tablet, and mobile views.  From that point, you can choose to use the template or go back and select another.</p>\n\n\n\n<p>This was the first point of the process that felt like it needed polishing.  The preview frame was too small to get a feel for what the site would look like on desktop or tablet.  This is a fixable problem.  There&#8217;s plenty of screen real estate GoDaddy could use to make the preview nicer.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The next screen allows users to enter information about what type of site they want to run. Depending on which of the following checkboxes are ticked, GoDaddy will set up the site differently.</p>\n\n\n\n<ul><li>Provide information</li><li>Write blog posts</li><li>Display my portfolio</li><li>Sell physical goods to my customers</li><li>Sell digital goods to my customers to download</li></ul>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>After completing the final form, GoDaddy begins creating the site.  The host sets up the site with one or more of several plugins based on the choices made in the previous form.</p>\n\n\n\n<p>The site installation process was slower than I had expected.  We live in a fast-paced world where users expect things to happen nearly instantly.  I admit I was antsy while waiting for the process to complete, in part because everything else happened so quickly.  I wondered if I had time to grab a sandwich.  In reality, it was much faster than manually setting up a WordPress install, but the setup did take a few minutes of waiting.  My experience may have been an anomaly too.  Sometimes these things take time.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<h2>A Website Ready to Go</h2>\n\n\n\n<p>Out of the box, my newly-created site had five custom pages ready based on my choices during the onboarding process.</p>\n\n\n\n<ul><li>Blog</li><li>Get in Touch</li><li>Home</li><li>My Account</li><li>My Cart</li></ul>\n\n\n\n<p>It was nice to see WooCommerce ready and a contact form set up with my email (handled by the CoBlocks plugin). I would rather have seen <code>contact</code>, <code>account</code>, and <code>cart</code> page slugs for their respective pages, but that&#8217;s a personal preference.</p>\n\n\n\n<p>The site came with seven plugins installed, five of which were activated.</p>\n\n\n\n<ul><li>Akismet (deactivated)</li><li>CoBlocks</li><li>Gravity Forms (deactivated)</li><li>Sucuri Security</li><li>WooCommerce</li><li>WP101 Video Tutorials</li><li>Yoast SEO</li></ul>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/coblocks/\">CoBlocks</a> along with theme integration for the block editor is what made the process of working with the website a breeze.  GoDaddy <a href=\"https://wptavern.com/godaddy-acquires-themebeans-coblocks-block-gallery-and-block-unit-tests\">acquired the CoBlocks plugin</a> in April.  At the time, the plugin had 30,000+ active installs.  It has since grown to 80,000+ in the few months since GoDaddy has taken over.</p>\n\n\n\n<h2>The Onboarding Process Provides a Nice User Experience</h2>\n\n\n\n<p>I&#8217;ve been critical of GoDaddy over the years.  I am a customer of one of their other hosting products that launched years ago.  That particular site is stuck on PHP 5.6, which has given me the feeling that the company is not focused on its older projects.  However, Campbell said they are in the process of moving users on legacy hosting products to a newer platform.</p>\n\n\n\n<p>I&#8217;ve been cautiously optimistic about the work GoDaddy has been doing within the WordPress community.  They&#8217;ve more than shown their commitment to the WordPress platform over the past few years.</p>\n\n\n\n<p>Despite a couple of minor hiccups, the onboarding process the hosting giant has built is one of the best experiences I have ever had launching a WordPress site.  Even as an old pro, I&#8217;d consider using it for future projects, particularly when setting up sites for less tech-savvy family and friends.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2019 20:30:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WordPress.org blog: Becoming Better Digital Citizens Through Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7353\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2019/10/becoming-better-digital-citizens-through-open-source/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7957:\"<p>The WordPress Project is on a mission to democratize publishing. As WordPress empowers more people to participate in the digital space, we have the opportunity to make sure that everyone can participate safely and responsibly. Today marks the start of Digital Citizenship Week. We are going to share how open source can be used as a tool for learners (regardless of age) to practice and model the essential parts of being a good digital citizen.</p>\n\n\n\n<h2>What is digital citizenship?</h2>\n\n\n\n<p>The digital landscape constantly changes and this affects the way we use the internet. New platforms emerge, people find different ways to spread information, communities form, grow and fade away every day. The concepts and practice of promoting civil discourse, critical thinking and safe use of the internet still remain central. And that is exactly what digital citizenship is about.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“Put simply, digital citizenship is a lot like citizenship in any other community &#8212; the knowledge of how to engage with digital communities you’re part of in a way that is thoughtful, safe, and makes appropriate use of the technology.”</em></p><cite><em>Josepha Haden, Executive Director WordPress Project</em></cite></blockquote>\n\n\n\n<h2>Who is a digital citizen?</h2>\n\n\n\n<p>Digital Citizenship is for all age groups. Anyone who uses the internet on a computer, mobile device or a TV is a digital citizen. You don’t have to be tech-savvy already, maybe you are taking your first steps with technology. Digital Citizenship Week is a chance to reflect together on our impact on the digital world. It can help us to make our consumption more considered and our interaction friendlier. It enables us to make a positive difference to those around us.</p>\n\n\n\n<p>All of us can strive (or learn) to become better digital citizens. It can be affected by the access those teaching have had to digital skills and good practice. Adult education classes and community tech hubs play a part in basic tech skill development. Unfortunately, these are not always accessible to those in less populated geographic locations.&nbsp;</p>\n\n\n\n<p>Open source communities like WordPress already make a difference in encouraging the principles of digital citizenship, from sharing tech skills to improving security knowledge. They give people an opportunity to learn alongside their peers and many of the resources are available regardless of location, resources, or skills.</p>\n\n\n\n<ul><li>WordPress Meetups &#8212; locally-based, informal learning sessions &#8212; typically take place monthly on weekday evenings. </li><li>WordCamps are city-based conferences that take place in cities worldwide. These events usually last 1-3 days and are organized and run by volunteers.</li><li>The talks are also recorded and made available on the free, online library <a href=\"https://wordpress.tv/\">WordPress.tv</a>. These can be watched from the comfort of your own home, office or during informal get-togethers.</li></ul>\n\n\n\n<h3>What can we do as part of the WordPress community?</h3>\n\n\n\n<p>Digital citizenship skills, like many other skills needed in this tech-focused world, should be kept up-to-date. Open source communities offer unparalleled opportunities to do this and are available in countries across the world. As part of our role as members of WordPress and other communities, we can pass on such skills to others. For instance by working alongside people who have had limited experience of digital skills. Or by finding new ways of making this knowledge sharing fun and accessible.&nbsp;</p>\n\n\n\n<p><strong>Here are just a few of the ways we do and can make an even greater difference:</strong></p>\n\n\n\n<ul><li>as bloggers and writers, we can be more aware of how to write content responsibly.</li><li>as designers, we can think more about how different people will view, understand and respond to the designs and visuals we create or use.</li><li>as developers, we can build systems that make it easier for all users to find information and accomplish their goals, to be secure while visiting our sites, and to model good security and practice.</li><li>as community members, through organizing events like <a href=\"https://www.meetup.com/pro/wordpress\">WordPress Meetups</a> and <a href=\"https://central.wordcamp.org\">WordCamps</a>, we are helping equip those who may not have had access to digital literacy or who lack the confidence to put it into place or share with their family and colleagues. Through these events, the online videos and other resources on <a href=\"https://wordpress.tv/\">WordPress.tv</a> and through the <a href=\"https://make.wordpress.org/\">Make WordPress teams</a>, we are already making a difference every day.</li><li>as individuals, the way we communicate in the community and listen to each other is equally important. This is a vital part of how we grow and model positive digital citizens. Through growing our positive digital skills and a better understanding of online etiquette and challenges, we can make our immediate and wider digital world a more positive and useful environment.</li><li>making it easier to document and share knowledge.</li><li>emphasizing how skills learned within the community can be used in other parts of our digital lives.</li><li>creating and becoming ambassadors for Digital Citizenship.</li></ul>\n\n\n\n<p>You can also get involved with specific events that have grown out of the wider WordPress project, championed by enthusiasts and those wanting to improve specific digital skills and bring wider benefits to society.</p>\n\n\n\n<h2>Community-driven Events</h2>\n\n\n\n<p>For example, <a href=\"https://wptranslationday.org\"><strong>WordPress Translation Day</strong></a> in 2019 had 81 local events worldwide. Running for 24-hours, individuals with language skills translated aspects of the platform into multiple languages with a total of 1181 projects modified. An amazing 221 new translators joined on the day. In addition, there was a live stream with talks, panel discussions, interviews, and sharing of tips and skills to help others learn how to translate. Volunteers are now planning the event for 2020!<br /><br /><a href=\"https://make.wordpress.org/polyglots/2019/03/01/global-wordpress-translation-day-4-is-coming/\">Stories of how people came together for WordPress Translation Day</a></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div><br />Interviews with some of the participants from a previous WordPress Translation Day giving a flavour of how volunteers developed this event.\n\n\n\n<p><strong>Do_action days</strong> are WordPress events organized in local communities to help give charities their own online presence. Each event involves members of the local WordPress community, planning and building new websites for selected local organizations in one day. Some take place in a working day, others on weekends.&nbsp;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>Volunteer Tess Coughlan-Allen talking about how people came together for the first do_action in Europe to help local charities. \n\n\n\n<p><a href=\"https://doaction.org\">Find the next do_action hackaton nearby your home town.</a></p>\n\n\n\n<h3>Improving digital skills through WordPress</h3>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div><br />In this video clip, Josepha talks about the Digital Divide and what current technological trends mean for it in the future. She explores what it takes to be literate in the digital landscape and how WordPress can be used to build and perfect those skills.\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to <a href=\"https://profiles.wordpress.org/webcommsat/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>webcommsat</a> for researching and writing this article and <a href=\"https://profiles.wordpress.org/yvettesonneveld/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>yvettesonneveld</a> for her supporting work in this series.<br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2019 07:31:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: Edit Flow Future in Flux: Here Are 5 Alternative Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94489\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/edit-flow-future-in-flux-here-are-5-alternative-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10230:\"<p>After years of unpredictable development and support, it seemed the <a href=\"https://wordpress.org/plugins/edit-flow/\" rel=\"noopener noreferrer\" target=\"_blank\">Edit Flow</a> plugin had finally given up the ghost last week when an Automattic support representative <a href=\"https://wptavern.com/automattic-has-discontinued-active-development-on-edit-flow-plugin\" rel=\"noopener noreferrer\" target=\"_blank\">confirmed that it is no longer being actively developed</a> and recommended users switch to an alternative. Nick Gernert, head of WordPress.com VIP, has since <a href=\"https://wptavern.com/automattic-has-discontinued-active-development-on-edit-flow-plugin#comment-307821\" rel=\"noopener noreferrer\" target=\"_blank\">commented</a> on our post to clarify the company&#8217;s intentions. He said Automattic is &#8220;in no way dropping support for Edit Flow:&#8221;</p>\n<blockquote><p>I’ll start by saying we are in no way dropping support for Edit Flow.</p>\n<p>We do see a difference between active feature development and maintenance updates to a plugin and this post tends to use these things interchangeably. It is correct that we are not currently pushing new features for Edit Flow. However, we are committed to maintaining this and other plugins so that those who depend on them are able to continue to do so.</p>\n<p>We face the same challenge that many in software face when it comes to supporting existing work while looking to the future and where to invest energy. I hope folks can understand the delicate balance here. We accept that we have fallen short at times when it comes to maintaining our existing work and appreciate the community holding us accountable.</p></blockquote>\n<p>Gernert also said the company&#8217;s VIP service is &#8220;seeing demand for WordPress in the enterprise market like never before.&#8221; The team is doubling down on its commitment to product development for this market and Gernert said outlook for Edit Flow and other Automattic plugins should improve:</p>\n<blockquote><p>VIP is more committed than ever to product development for the unique needs of this space. We have recently brought on a new Head of Product and Engineering. With the addition of this role, there is a commitment to focused product development and that includes ensuring key plugins like Edit Flow are maintained. Presently, that maintenance includes security updates, critical bugs, ensuring compatibility with new versions of WordPress, and directly supporting VIP customer use. Going forward the VIP Product and Engineering teams are committed to allocating time to regularly review and address issues and provide regular updates to the plugins. As we stabilize on maintenance, new feature development will pick up in areas where we see unique opportunity.</p></blockquote>\n<p>Users and developers seemed wary of this response, given the plugin&#8217;s history and more recent experiences of trying to contribute to its upkeep. <a href=\"https://gorillabunny.com/\" rel=\"noopener noreferrer\" target=\"_blank\">James Miller</a>, a developer who was using Edit Flow on a client project, shared his experience trying to submit a PR for a bug fix.</p>\n<p>&#8220;It doesn’t seem like it’s even being given a level of attention at the most basic level of what could be considered &#8216;maintained,\'&#8221; Miller said. &#8220;This plugin was breaking functionality of other plugins on a client site.</p>\n<p>&#8220;I forked the repo, fixed the issue, and <a href=\"https://github.com/Automattic/Edit-Flow/pull/499\" rel=\"noopener noreferrer\" target=\"_blank\">submitted a PR</a> on January 26. After several months of periodic commenting and asking if anybody was even maintaining the repo, it finally got merged just last month. This doesn’t seem to me like a commitment to maintaining the plugin.&#8221;</p>\n<h3>What Does this Mean for Edit Flow Users?</h3>\n<p>If you&#8217;re not currently experiencing any critical bugs and you don&#8217;t require additional features beyond what it offers, Edit Flow may be still be a good option if Automattic is able to improve its maintenance. As previously predicted, any new features coming to this plugin will be those that &#8220;directly support VIP customer use.&#8221;</p>\n<p>Support for the plugin has not improved over the last week, so users may still be waiting for updates and fixes for awhile. The support forums indicate that multiple users continue to report issues with both the block editor and the classic editor, as well as conflicts with other plugins. This is likely why Automattic support representatives <a href=\"https://wordpress.org/support/topic/edit-flow-plugin-is-closed-no-longer-supported/\" rel=\"noopener noreferrer\" target=\"_blank\">recommend</a> users fork Edit Flow or switch to another solution.</p>\n<p>In support of smaller WordPress-powered publications that have an immediate need for editorial tools, we have compiled a list of alternatives that offer more frequent maintenance and support. Edit Flow&#8217;s primary features include a calendar, custom statuses, editorial comments, editorial metadata, notifications, story budget, and user groups. One of the alternatives below may be a suitable replacement, depending on which features are most important to your editorial workflow.</p>\n<h3>PublishPress</h3>\n<p><a href=\"https://wordpress.org/plugins/publishpress/\" rel=\"noopener noreferrer\" target=\"_blank\">PublishPress</a> is the plugin that Automattic recommended as an alternative, and it is the closest one to matching Edit Flow&#8217;s features. It has 7,000 active installs and is used by companies, non-profits, educational institutions, magazines, newspapers, and blogs.</p>\n<p>In the free plugin, PublishPress provides an editorial calendar, notifications, editorial comments, custom statuses, content overview, and the ability to create custom metadata for posts. Its creators also offer commercial add-ons for things like a content checklist, Slack notifications, multiple authors, WooCommerce checklist, and more.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/publishpress-editorial-calendar.png?ssl=1\"><img /></a></p>\n<p>Since PublishPress is actually a fork of the Edit Flow plugin, users can <a href=\"https://publishpress.com/knowledge-base/migrate/\" rel=\"noopener noreferrer\" target=\"_blank\">migrate seamlessly from Edit Flow</a> without losing any data or settings using the plugin&#8217;s built-in migration utility.</p>\n<p>The PublishPress team has also created several other publishing plugins that may also be useful for different editorial needs, including <a href=\"https://wordpress.org/plugins/revisionary/\" rel=\"noopener noreferrer\" target=\"_blank\">PublishPress Revisions</a>, <a href=\"https://wordpress.org/plugins/press-permit-core/\" rel=\"noopener noreferrer\" target=\"_blank\">PressPermit</a>, and <a href=\"https://wordpress.org/plugins/capability-manager-enhanced/\" rel=\"noopener noreferrer\" target=\"_blank\">Capability Manager Enhanced</a>.</p>\n<h3>Oasis Workflow</h3>\n<p><a href=\"https://wordpress.org/plugins/oasis-workflow/\">Oasis Workflow</a> is a plugin that allows site admins to create custom workflows for content review. It includes three process/task templates for assignment, review, and publishing actions with role-based routing. Workflows can be configured using a drag-and-drop interface. The plugin supports custom statuses, process history, task reassignment, due dates, and email reminders.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/oasis-workflow.png?ssl=1\"><img /></a></p>\n<p>Oasis Workflow is often used in healthcare, law and financial firms, universities, CPA firms, non-profits, news outlets, and other organizations that require a formal review process for publishing. A <a href=\"https://www.oasisworkflow.com/\" rel=\"noopener noreferrer\" target=\"_blank\">commercial version</a> of the plugin includes features like multiple workflows, auto submit, revisions for published content, with add-ons for editorial contextual comments, teams, groups, and more.</p>\n<h3>Nelio Content</h3>\n<p><a href=\"https://wordpress.org/plugins/nelio-content/\">Nelio Content</a> is a plugin with 6,000 active installs that includes an editorial calendar, editorial comments, tasks, and a content assistant. It also helps users schedule and automatically promote content on social networks. The plugin integrates relevant metrics from Google Analytics and social media accounts to assist users in promoting content.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2019/10/nelio-calendar.png?ssl=1\"><img /></a></p>\n<h3>Editorial Calendar</h3>\n<p>If the editorial calendar feature of Edit Flow is the only one you need, then the <a href=\"https://wordpress.org/plugins/editorial-calendar/\" rel=\"noopener noreferrer\" target=\"_blank\">Editorial Calendar</a> plugin might be a good alternative. It is used on more than 40,000 WordPress sites. The plugin provides an overview of when each post will be published, supports multiple authors, the ability to rearrange the schedule with drag-and-drop capabilities, and edit posts directly in the calendar.</p>\n<div class=\"embed-vimeo\"></div>\n<h3>WP Scheduled Posts</h3>\n<p><a href=\"https://wordpress.org/plugins/wp-scheduled-posts/\" rel=\"noopener noreferrer\" target=\"_blank\">WP Scheduled Posts</a> is another editorial calendar plugin that makes it easy to manage multiple authors from one place. It includes a visual calendar that can be manipulated via drag-and-drop, allowing users to easily add posts in the queue or create new posts inside the calendar. The plugin has a dashboard widget that displays post statuses for single or multiple authors.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/schedule-calendar.png?ssl=1\"><img /></a></p>\n<p>The <a href=\"https://wpdeveloper.net/plugins/wp-scheduled-posts/\" rel=\"noopener noreferrer\" target=\"_blank\">commercial version</a> of WP Scheduled Posts is targeted at the scheduling aspects of publishing. It offers an auto-scheduler where users can create rules to publish content automatically, as well as a missed schedule handler for automatically publishing posts that didn&#8217;t go out on schedule.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Oct 2019 21:21:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Meta Box Settings Page Extension Adds Support for Customizer, Network-Wide Settings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94811\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/meta-box-settings-page-extension-adds-support-for-customizer-network-wide-settings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3677:\"<p>The team behind the Meta Box plugin <a href=\"https://metabox.io/mb-settings-page-customizer-multisite\">updated their MB Settings Page add-on</a> to include support for the customizer and multisite.  The customizer feature allows theme authors to integrate their custom settings into the customizer using framework-specific code.  The multisite integration allows plugin authors to create a network settings page.</p>\n\n\n\n<p>The new features come on the heels of an <a href=\"https://metabox.io/meta-box-updates-better-performance-for-object-fields-mb-core-and-new-settings-page\">update to the core Meta Box plugin</a> that improves performance for users who have thousands of objects such as posts, terms, or users.</p>\n\n\n\n<p>The primary <a href=\"https://wordpress.org/plugins/meta-box/\">Meta Box</a> plugin originated as a custom fields framework for plugin and theme authors to create meta boxes.  It has since grown to handle settings across taxonomies, user profiles, options pages, comment forms, and other areas that have form fields.  The plugin offers a unifying API for developers to code over 40 field types without the need to learn each of the internal, field-related APIs in WordPress.  At the moment, the plugin has over 400,000 active installations.</p>\n\n\n\n<p>Framework-style plugins such as Meta Box, Advanced Custom Fields, and others have filled a gap left open by core WordPress, which does not have a single API for handling fields.  Over the years, developers have been left to code against dissimilar APIs and in different languages (PHP and JavaScript).  This new feature from the Meta Box team will further extend its usefulness to a large number of developers who need to build out options for their users quickly and without learning additional APIs.</p>\n\n\n\n<p>The <a href=\"https://metabox.io/plugins/mb-settings-page/\">MB Settings Page add-on</a> is a premium extension that allows theme and plugin authors to create custom settings pages.</p>\n\n\n\n<p>The purpose of its customizer integration is for theme authors to map settings pages to customizer panels.  However, the feature also allows for sections instead.  All of the Meta Box&#8217;s field types carry over to the customizer except for its file and image field types due to limitations with how the customizer works.  However, other file and image-related fields will handle most needs.</p>\n\n\n\n<p>Customizer integration isn&#8217;t an all-or-nothing thing.  Developers can choose to keep both a custom settings page and panels in the customizer.  They may also opt for one screen over the other based on their needs.</p>\n\n\n\n<p>The Meta Box team released a video showcasing the new customizer support with some mood music.  <em>To be honest, I&#8217;m just chilling out and listening as I write this article.  I&#8217;ve got a little head bob going too.</em></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>There is currently no word on whether the customizer fields support live preview.  Based on the video, when a user updates an option, the preview panel performs a full page refresh.  If live preview is not currently a feature, it would be a welcome one in a future update.</p>\n\n\n\n<p>Along with customizer integration, the MB Settings Page update provides the ability for developers to create network-wide settings for multisite.  </p>\n\n\n\n<p>For some developers, network-wide settings are a bit of an afterthought or something they don&#8217;t consider at all for their plugins.  Not all plugins need options on the network level.  For those that do, authors can start using their custom Meta Box fields directly in the WordPress network admin with a single line of code.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Oct 2019 17:58:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WPTavern: WordPress 5.3 Improves Large Image Handling\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94814\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wptavern.com/wordpress-5-3-improves-large-image-handling\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2222:\"<p><a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-beta-3/\" rel=\"noopener noreferrer\">WordPress 5.3 Beta 3</a> was released this week and RC 1 is right around the corner, expected <a href=\"https://make.wordpress.org/core/5-3/\" rel=\"noopener noreferrer\" target=\"_blank\">October 15</a>. Core contributors have been publishing developer notes on new features landing in this release. One exciting enhancement that hasn&#8217;t received much attention yet is WordPress&#8217; updated <a href=\"https://core.trac.wordpress.org/ticket/47873\" rel=\"noopener noreferrer\" target=\"_blank\">handling of large images</a>.</p>\n<p>Many WordPress users don&#8217;t consider the size of the images they are uploading to their sites, and modern smartphones are capable of producing very high quality images at very large file sizes. WordPress 5.3 will automatically detect large images (with a default threshold of 2560px) and generate a “web-optimized maximum size.&#8221; The threshold is used as the max-height and max-width value to scale down the image for use as the largest available size. A new <code>big_image_size_threshold</code> filter is available for developers who want to change the threshold size or disable the new feature altogether.</p>\n<p>WordPress will store the original image size so that it is still accessible and a new function is available for fetching its path: <code>wp_get_original_image_path()</code>. It is also used to generate all the image sub-sizes.</p>\n<p>More than two million WordPress users rely on plugins like Imsanity, Smushit, and EWWW Image Optimizer to optimize images. They often include additional features for bulk resizing previously uploaded images. WordPress&#8217; new large image handling <a href=\"https://make.wordpress.org/core/2019/10/09/introducing-handling-of-big-images-in-wordpress-5-3/#comment-37044\" rel=\"noopener noreferrer\" target=\"_blank\">should not interfere with image optimization plugins</a>, because it doesn&#8217;t affect the default settings that they often hook into and use to perform additional optimizations. The new core enhancement may be suitable to replace these plugins for some users who only require the bare minimum optimization on upload.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Oct 2019 19:46:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: MachoThemes, Modula Parent Company, Acquires Three Gallery Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94816\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/machothemes-modula-parent-company-acquires-three-gallery-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3453:\"<p><a href=\"https://www.machothemes.com\">MachoThemes</a>, the WordPress development company behind the <a href=\"https://wordpress.org/plugins/modula-best-grid-gallery/\">Modula Gallery</a> plugin, has acquired three gallery plugins.  The company is currently rolling the first two of the plugins, <a href=\"https://wordpress.org/plugins/final-tiles-grid-gallery-lite/\">Final Tiles Grid Gallery Lite</a> and <a href=\"https://wordpress.org/plugins/photoblocks-grid-gallery/\">PhotoBlocks Grid Gallery</a>, into Modula.  The third plugin, <a href=\"https://wordpress.org/plugins/everlightbox/\">EverLightbox</a>, will remain as a standalone project.</p>\n\n\n\n<p>The three plugins were purchased from Diego Imbriani of GreenTreeLabs.  This was not MachoThemes&#8217; first acquisition from Imbriani.  They acquired the original Modula plugin from him over two years ago.  From there, they grew the user base and continued developing the plugin.</p>\n\n\n\n<p>At this time, the exact details of the financial terms are not available to the public, but the transaction was in the range of low-to-mid 5-figures.</p>\n\n\n\n<p>The acquisition is a part of MachoThemes&#8217; growth strategy for building a larger audience for their Modula plugin, which currently has over 60,000 active installations.  &#8220;We liked their feature set, their quirkiness, and overall what they stand for,&#8221; said MachoThemes owner Christian Raiber of the reasons behind the acquisition.</p>\n\n\n\n<p>The merge of Final Tiles and PhotoBlocks affects over 34,000 plugin users.  MachoThemes does not plan to continue supporting or developing them as individual plugins.</p>\n\n\n\n<p>The team is in the process of building a migration script to allow users to bring their existing galleries over to the Modula plugin.  It is important that users migrate to Modula or another option because unsupported versions of their current plugins may not work in the future.</p>\n\n\n\n<p>Both plugins are similar to Modula by allowing users to create a gallery separately from the primary post content screen.  However, the user interface and experience between all three plugins are nothing alike.  Merging the plugins into Modula means that MachoThemes can work on a single interface and experience for users.</p>\n\n\n\n<p>Users may be worried about losing features when migrating to a new plugin.  &#8220;Most of these options already exist in Modula, under a different name, setting or otherwise paid extension,&#8221; said Raiber.  &#8220;There are a few interesting options in these plugins indeed, and they&#8217;ve already sparked new ideas for the team to experiment with.&#8221;</p>\n\n\n\n<p>Raiber said his company would reach out to users.  &#8220;We&#8217;ll have videos, doc entries, and a dedicated page on wp-modula.com,&#8221; he said of the transition.  The company plans to keep the plugins available for the next six months but may extend that period depending on how the transition for users is going.</p>\n\n\n\n<p>The EverLightbox plugin will remain separate for those who want a lightbox feature for the standard WordPress galleries but not a full gallery-editing plugin.  &#8220;We will continue to support the plugin and work hard to ensure that all users have a smooth-sailing experience with the plugin just as we have been for all of the plugins we&#8217;ve been building,&#8221; said Raiber.</p>\n\n\n\n<p>The company plans to continue developing and supporting EverLightbox for the long term.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 10 Oct 2019 19:21:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: ExpressionEngine Under New Ownership, Will Remain Open Source for Now\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94761\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/expressionengine-under-new-ownership-will-remain-open-source-for-now\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7521:\"<p>EllisLab founder Rick Ellis <a href=\"https://expressionengine.com/blog/expressionengine-has-a-new-owner\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> yesterday that ExpressionEngine has been acquired by Packet Tide, the parent company of <a href=\"https://eeharbor.com\" rel=\"noopener noreferrer\" target=\"_blank\">EEHarbor</a>, one of the most successful EE add-on providers and development agencies in the community. A year ago EllisLab, the developers of EE core, was acquired by Digital Locations but Ellis said the company ended up not being a good fit for the future of the CMS:</p>\n<blockquote><p>A year ago, EllisLab was acquired by Digital Locations in order to facilitate the transition of ExpressionEngine from a commercial software application to an open source one. That transition was successful, but it became apparent in recent months that ExpressionEngine didn’t fit perfectly within the goals of Digital Locations, as it seeks to build a business in Artificial Intelligence.</p>\n<p>We decided that what was best for ExpressionEngine was to seek a new owner, one that could devote all the resources necessary for ExpressionEngine to flourish.</p></blockquote>\n<p>In November 2018, <a href=\"https://wptavern.com/expressionengine-goes-open-source-after-16-years\" rel=\"noopener noreferrer\" target=\"_blank\">EE went open source</a>, adopting the <a href=\"https://expressionengine.com/license\" rel=\"noopener noreferrer\" target=\"_blank\">Apache License Version 2.0</a>, after 16 years of being locked down under restrictive licensing. EE&#8217;s dwindling community of product developers and site builders were hopeful that the new open source licensing would expand EE&#8217;s reach and bring back developers who had migrated to alternatives like <a href=\"https://craftcms.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Craft</a>.</p>\n<p>After the acquisition announcement, the EE community was concerned whether or not it will remain free and open source. Although the software&#8217;s homepage sports the tagline &#8220;The Open-Source CMS that supports YOU all the way,&#8221; EE&#8217;s new owners have left the option open for reconsidering its licensing further down the road. They plan to stick with the open source license for the time being. When asked directly in the <a href=\"https://t.co/gjVhmpqqn1?amp=1\" rel=\"noopener noreferrer\" target=\"_blank\">EE Slack</a>, EE Harbor developer <a href=\"https://twitter.com/TomJaeger\" rel=\"noopener noreferrer\" target=\"_blank\">Tom Jaeger</a> said, &#8220;That is our plan for now, although at this stage we&#8217;re looking at everything with a fresh eye towards what&#8217;s best.&#8221; The company has <a href=\"https://eeharbor.com/faq\" rel=\"noopener noreferrer\" target=\"_blank\">published a list of FAQs</a> with the same information.</p>\n<p>Brian Litzinger, a developer at <a href=\"https://boldminded.com/\" rel=\"noopener noreferrer\" target=\"_blank\">BoldMinded</a>, who has created more than 36 add-ons for EE, and is also on the EECA (ExpressionEngine Community Association) board that organizes EEConf, said he has confirmed that EEHarbor plans to keep the CMS open source.</p>\n<p>&#8220;The board spoke to new ownership just today actually, and they have every intention of keeping it open source,&#8221; Litzinger said. &#8220;I can’t speak for the whole community, but since going open source my add-on sales have not significantly increased or decreased.</p>\n<p>&#8220;As with any open source project there has been feedback and pull requests from the community, but nothing significant (e.g. large features). The community as a whole is pretty excited about the new ownership and ExpressionEngine&#8217;s future though.&#8221;</p>\n<p>Shawn Maida, founder of <a href=\"https://fostermade.co\" rel=\"noopener noreferrer\" target=\"_blank\">Foster Made</a>, a company that also sells ExpressionEngine add-ons, said he has not seen a significant direct change in the economics of EE since the project went open source.</p>\n<p>&#8220;I think the real question here is what business model best enables the growth and continued support of the CMS itself, and how is that balanced against the growth of the community,&#8221; Maida said. &#8220;As a business that offers some add-ons for ExpressionEngine, we need to see both continued growth in ExpressionEngine as a platform and growth in the community, so I think the license model that best enables that matters.&#8221;</p>\n<p>Travis Smith, president of <a href=\"https://www.hopstudios.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Hop Studios</a>, has been working with EE since its early days. As someone who is deeply invested in the EE community, he said that he doesn&#8217;t think a prospective licensing change would impact the broader community as much as having a clear vision for the CMS&#8217;s future.</p>\n<p>&#8220;I think a licensing change per se wouldn&#8217;t be good or bad, but a well-articulated and communicated vision for the CMS&#8217;s future would be really helpful for a community that feels unsure at the moment,&#8221; Smith said.</p>\n<p>&#8220;I do think that the exposure that going open source gave into the development process overall at EllisLab was an improvement, and that new features and bug fixes were getting added at a decent pace.&#8221;</p>\n<p>EE may have changed its licensing to be open source but it is not a community-led project where major decisions happen by a consensus of a diverse representation of community leadership.</p>\n<p>&#8220;I didn&#8217;t observe the community gaining (or applying?) much input or influence over the future of ExpressionEngine in the past year,&#8221; Smith said. &#8220;I think there was still a feeling of &#8216;EE is EllisLab&#8217;s project&#8217; &#8212; and that this change of ownership might shake the community&#8217;s devs out of that default assumption, which would be a good thing.&#8221;</p>\n<p>In the <a href=\"https://eeharbor.com/faq\" rel=\"noopener noreferrer\" target=\"_blank\">FAQs EEHarbor published today</a>, the company confirmed that it will be developing new features and that it will consider feedback submitted from the community:</p>\n<blockquote><p>While we are in the early stages of long-term strategic planning, we already have a lot of thoughts and ideas around where to take ExpressionEngine based on our own experience. However, it’s not just about us. We are also very interested in collaborating with the ExpressionEngine community. Everyone is more than welcome to submit feedback for us to review as we consider the future of ExpressionEngine</p></blockquote>\n<p>After 16 years under a restrictive license, EE is an interesting example of a newly open source, corporate-led project with a community that is rediscovering its place while ownership of the software is transferred from one company to another. Responses to the acquisition are mostly positive, and users seem excited about Packet Tide&#8217;s first planned initiative &#8211; finishing development on ExpressionEngine 6.0. Ellis described this upcoming release as &#8220;an exciting new version we’ve been quietly working on behind the scenes.&#8221; It will include a new control panel with a dark theme, along with add-on and service integrations inside the app.</p>\n<p>EEHarbor does not plan to merge its add-ons with ExpressionEngine core at this time, and the statement published today reiterates the company&#8217;s commitment to &#8220;keep the add-on marketplace fair and open to all developers.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Oct 2019 23:11:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: Rosa 2 Restaurant Theme Provides a Frustrating and Satisfying Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94769\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/rosa-2-restaurant-theme-provides-a-frustrating-and-satisfying-experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9220:\"<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p><a href=\"https://pixelgrade.com/themes/restaurants/rosa2/\">Rosa 2</a> is the sequel to Pixelgrade&#8217;s best-selling theme, Rosa.  The new theme re-imagines its previous incarnation in the context of the block editor (Gutenberg).   I was provided a copy of the theme for free to test and provide my thoughts. </p>\n\n\n\n<p>The theme sells for $75/year, or you can pay a one-time fee of $95 for lifetime access.  The <a href=\"https://pixelgrade.com/blog/product/meet-rosa-2/\">product launch post</a> could make anyone excited about this theme, but is it worth it?</p>\n\n\n\n<p><strong>TLDR;</strong> Rosa 2 made for a satisfying experience when building restaurant-style pages.  However, the early learning curve and basic setup were frustrating.  It also lacks some of the polish I&#8217;d expect at a premium price.</p>\n\n\n\n<h2>A Rundown of the Issues</h2>\n\n\n\n<p>Before I dive into the good things about Rosa 2 (and there are some nice things about this theme), let me dive into the frustrating aspects.  There were so many pain points that I nearly gave up on the theme several times.  However, I soldiered on in the hopes of understanding why this theme might be worth using.</p>\n\n\n\n<h3>Install the Required Plugins First</h3>\n\n\n\n<p>Let me save you some time right now.  When the theme says that it requires the <a href=\"https://wordpress.org/plugins/customify/\">Customify</a> and <a href=\"https://wordpress.org/plugins/nova-blocks/\">Nova Blocks</a> plugins, it truly requires them.  Otherwise, the theme looks and behaves nothing like the demo or screenshots.  It may as well not be the same theme.</p>\n\n\n\n<p>When first activating the theme, the front page of your website will become a completely white screen.  It is not the dreaded <a href=\"https://wordpress.org/support/article/common-wordpress-errors/#the-white-screen-of-death\">White Screen of Death</a> caused by an error.  Instead, the theme is forcibly hiding the content with custom styles.</p>\n\n\n\n<p><em>Why?</em>  Yeah, good question.  </p>\n\n\n\n<p>I see no reason to do so.  Outside of changing some code (which I did), users must activate the plugins to make their content appear.  There is no technical reason this should be the case when using this theme.</p>\n\n\n\n<p>There should be no path in which a user installs a theme only to have their content disappear.</p>\n\n\n\n<p>I get it.  I was told these were required plugins.  The theme even provides easy installation and activation links via the TGM Plugin Activation script.  I also get that WordPress lacks any sort of real dependency system for handling this feature.  That doesn&#8217;t make it any less of a poor user experience.</p>\n\n\n\n<p>As a developer, I thought I&#8217;d trick the system and test the theme without those plugins installed.  I wanted to see what the theme looked like out of the box, which you can see in the following screenshot.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Oh, and that big block of category links in the above screenshot, it never goes away.  It just sits there on your blog posts page.  It is hard-coded in the posts page template (<code>home.php</code>).  Rosa 2 is billed as a restaurant theme, so it might be acceptable if you don&#8217;t plan on running a blog.</p>\n\n\n\n<h3>Header and Nav Problems</h3>\n\n\n\n<p>The default header looks nothing like the screenshots, demo, or video for the theme.  After nearly two hours of using the theme, I was ready to throw in the towel and rule this theme out as a lost cause.  Not being able to get the basic nav menu set up for the theme was an exercise in self-punishment that I wouldn&#8217;t wish on anyone.</p>\n\n\n\n<p>It turns out that the Nova Blocks plugin really is required.  <em>Did I mention that you should install the required plugins first?</em></p>\n\n\n\n<h3>Stretched images</h3>\n\n\n\n<p>On blog and archive pages, expect stretched featured images that attempt to fill out the box next to the excerpt for existing posts.  There doesn&#8217;t seem to be any remedy to this outside of uploading new images.  </p>\n\n\n\n<p>The theme uses the standard <code>post-thumbnail</code> size but does not define this size in the code.  For those unfamiliar with the technical aspects when using this specific size, the theme should ideally define it via the <code>set_post_thumbnail_size()</code> function.</p>\n\n\n\n<h3>Sticky header</h3>\n\n\n\n<p>The large sticky header gave me a gut-wrenching feeling that walls were closing in on me.  I became light-headed and dizzy.  I found it tough to breathe.  This is not hyperbole.  I&#8217;m dead serious.</p>\n\n\n\n<p>On a personal note, I&#8217;ve had some issues with claustrophobia for the last couple of years.  I first had this feeling after being stuck indoors for two weeks while watching over one of my cats who had surgery.  I typically work from the porch where I can get fresh air, but that was one of the worst periods of my life.  </p>\n\n\n\n<p>Since then, I often get this same feeling when sites have large sticky headers.  It feels like the walls are closing down.  <em>I wonder if others have similar issues.</em></p>\n\n\n\n<p>This feeling could be alleviated if the theme minimized the sticky-header height while scrolling down the page.  Fortunately, the theme allows users to choose a static header, which I strongly suggest using.  There are some other spacing and sizing options for the header area, which can help shrink some of this down.</p>\n\n\n\n<h2>Where the Theme Shines</h2>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2019/10/rosa2-custom-page.jpg?ssl=1\" target=\"_blank\" rel=\"noreferrer noopener\"><img /></a></div>\n\n\n\n<p>If there is one thing this theme does well, it is making it simple to create pages for a restaurant via the Nova Blocks plugin.  Within minutes of creating a custom page, I had a restaurant-style page set up and ready to go.</p>\n\n\n\n<p>When coupled with Nova Blocks, the theme beautifully handles the process of creating custom pages with numerous unique outcomes.  The integration with the plugin is brilliant.  Each block has custom demo content that you can easily modify.</p>\n\n\n\n<p>Some of the names of the blocks and block options were cutesy and fun, such as &#8220;Hero of the Galaxy,&#8221; but they became a slight nuisance when wanting to quickly figure out the purpose of a block.  I could see some users becoming annoyed at the names, and they might not be ideal for some professional settings.  They were kind of fun though.  I have mixed feelings about them.</p>\n\n\n\n<h2>How Does the Theme Handle Gutenberg?</h2>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Rosa 2 is a theme primarily built for the block editor.  It wonderfully handled core block output in my tests.  </p>\n\n\n\n<p>When using Gutenberg-ready themes, I view the pullquote block as sort of the theme designer&#8217;s signature. It is one of those blocks where designers can have a lot of fun and put a unique spin on the display.  I&#8217;m a fan of the pullquote style in this theme (pictured above).</p>\n\n\n\n<p>On the whole, it works well.  When coupled with Nova Blocks, you have a lot of power at your disposal.</p>\n\n\n\n<h2>How Does the Code Stack Up?</h2>\n\n\n\n<p>Rosa 2 is lightweight in terms of custom code.  Nearly all of the functionality is within the accompanying plugins.  Because this is a theme review, I didn&#8217;t dive into the plugin code.</p>\n\n\n\n<p>From a purely technical standpoint, the theme does most things according to standards.</p>\n\n\n\n<p>There are some things I&#8217;d change from an architectural standpoint.  For example, the file for its Customify plugin integration is over 1,100 lines of code.  I would break that down to more digestible bits, which would help with long-term maintenance and bug hunting.</p>\n\n\n\n<p>Some of the editor-related JavaScript code could be more efficient.  Repeated patterns should be grouped together to make the code smaller.  The editor JavaScript file is not large, but every byte counts in a world where developers assume everyone is running on Gigabit internet connections.</p>\n\n\n\n<p>The primary stylesheet is 173 kb, which is <em>OMGBBQ</em> large, especially when you top it off with 100s of kb coming from the stylesheets and scripts loaded by Nova Blocks plugin.  Unless you&#8217;re a user who is heavily optimizing your site, you can count on some slow page loads.</p>\n\n\n\n<h2>The Final Verdict</h2>\n\n\n\n<p>I&#8217;d only recommend this theme to people who have more patience than me.  While I didn&#8217;t follow instructions right off the bat (as a reviewer, I&#8217;m trying to push limits and break things), the theme did have some pain points that simply made for a frustrating process.</p>\n\n\n\n<p>I&#8217;m in the camp of people who believes themes should work out of the box.  This theme doesn&#8217;t work without some setup.  You&#8217;ll need to put in some legwork to get it going.  However, once you make it over the initial hump, you can build some beautiful page layouts.</p>\n\n\n\n<p>I suggest using it strictly for its defined purpose of building a restaurant website.  The typography is designed well enough for blogging, but the overall theme isn&#8217;t well-suited to it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Oct 2019 19:47:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 5.3 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7312\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/10/wordpress-5-3-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3723:\"<p>WordPress 5.3 Beta 3 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong>&nbsp;so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.3-beta3.zip\">download the beta here</a>&nbsp;(zip). </li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on&nbsp;<a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there.</p>\n\n\n\n<p>Thanks to the testing and feedback from everyone who tested <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\">beta 2</a> (and&nbsp;<a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">beta 1</a>) over&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=10%2F01%2F2019..10%2F08%2F2019&milestone=5.3&col=id&col=summary&col=status&col=milestone&col=owner&col=type&col=priority&order=priority\">60 tickets have been closed</a>&nbsp;in the past week. </p>\n\n\n\n<h2>Some highlights </h2>\n\n\n\n<ul><li>Fixes and enhancements in the admin interface changes introduced in previous 5.3 beta releases.</li><li>Wording changes in login screen (<a href=\"https://core.trac.wordpress.org/ticket/43037\">#43037</a>).</li><li>Improved accessibility in media upload modal (<a href=\"https://core.trac.wordpress.org/ticket/47149\">#47149</a>).</li><li>Changes in the way the new error handling with images works (<a href=\"https://core.trac.wordpress.org/ticket/48200\">#48200</a>).</li><li>MediaElement.js has been updated from 4.2.6 to 4.2.13 (<a href=\"https://core.trac.wordpress.org/ticket/46681\">#46681</a>). The script is now also being loaded in the footer again. This fixes a regression that happened two years ago, so might be worth noting (<a href=\"https://core.trac.wordpress.org/ticket/44484\">#44484</a>).</li><li>Update to the REST API media endpoint to allow resuming of uploads (<a href=\"https://core.trac.wordpress.org/ticket/47987\">#47987</a>).</li></ul>\n\n\n\n<p>In addition to these, Beta 3 landed a number of small consistency and polish changes to the REST API, including an improvement to the permissions check used when editing comments, a fix for post type controller caching edge cases, and most importantly, the ability to use the _embed parameter to access the full data for a post using the /wp/v2/search endpoint.</p>\n\n\n\n<h2>Developer notes</h2>\n\n\n\n<p>WordPress 5.3 has lots of refinements to polish the developer experience. To keep up, subscribe to the&nbsp;<a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a>&nbsp;and pay special attention to the&nbsp;<a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">developer notes</a>&nbsp;tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>&nbsp;where you can also find a list of&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2019 20:58:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Francesca Marano\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: The Evolution of Anonymity in the Internet Age\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94745\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/the-evolution-of-anonymity-in-the-internet-age\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9328:\"<p>As a child of the &#8217;90s, I was growing up in one of the largest transitional periods in human history.  The Internet Age was upon us.</p>\n\n\n\n<p>I was born and raised in a small community in rural Alabama.  The country.  The backwoods.  To give you an idea of how small the place was, my entire school (grades K-12) had around 800 students.  While I was fortunate enough that my family could afford to travel for vacation almost every year, I mostly lived a sheltered life.</p>\n\n\n\n<p>I rode bikes down the dirt road and explored neighbors&#8217; hunting lands with my best friend in the summer.  We&#8217;d get up at dawn, grab some provisions, and cycle out for the day&#8217;s adventure.  We&#8217;d race old lawnmowers, build unstable treehouses, and swim in what were likely snake-infested creeks.  We&#8217;d camp out under the stars.  Our parents never asked where we were.  As long as we showed up for supper and took a bath a few times each week to scrub the dirt off, we were generally left up to our own imaginations.</p>\n\n\n\n<p>There was another aspect of growing up in the &#8217;90s, and that was video games.  At 16, I spent most of the summer in the fields picking watermelons or throwing bales of hay onto a trailer.  It was hard work, but it kept me supplied with whatever video games I wanted.  When not out in the wild, my best friend and I would be glued to a 19-inch television playing the Nintendo 64 (and later the Sega Dreamcast).</p>\n\n\n\n<p>I lived in this somewhat country-bumpkin bubble with no idea of the outside world.</p>\n\n\n\n<p>Then came the explosion of the internet.  My family never had a computer at home.  That left me to access this wonderful new thing during school hours or at a friend&#8217;s house.</p>\n\n\n\n<p>Like pretty much every teen boy I knew at the time, the best use of the internet was logging into adult chatrooms and hoping to chat with a woman.  Yeah, the average teenage boy wasn&#8217;t doing anything productive with the internet, even in the &#8217;90s.  Big surprise there.  This isn&#8217;t groundbreaking news, folks.  Move along.</p>\n\n\n\n<p>There were other uses of chatrooms, such as finding other gamers.  That&#8217;s where my original love of the internet began.  I could talk to people across the world about Nintendo and Sega games.  I even started getting pen-pals where we would exchange weekly emails.</p>\n\n\n\n<p>At the time, there was this common saying among adults, &#8220;You don&#8217;t know who you&#8217;re talking to on that thing. It could be a fat, 40-year-old man living in his parents&#8217; basement.&#8221;  <em>Hey, why you throwin&#8217; shade at heavyset men?  Just tell me it could be a psycho.</em></p>\n\n\n\n<p>My parents drilled this lesson into my brain.  School teachers did the same.  Like my peers at the time, I was required to use a pseudonym when going online.  The thought of using a real name was almost unheard of.  As teens, we&#8217;d joke about the basement-dwelling bogeyman who our parents and teachers warned us against.  It was all a game to us despite there being legitimate fears, particularly now that I have 20 years of hindsight at my disposal.</p>\n\n\n\n<p>That&#8217;s where I came up with my username of <a href=\"https://profiles.wordpress.org/greenshady\">greenshady</a>, by the way.  One day I may even tell what it means.  One day.  For now, I&#8217;ll keep all of you who have asked about it over the years guessing.</p>\n\n\n\n<p>I used that username for years because there was always this little voice in the back of my mind telling me to remain anonymous.</p>\n\n\n\n<h2>Anonymity in the Age of Transparency</h2>\n\n\n\n<p>I&#8217;m not exactly sure at what point attitudes toward anonymity changed.  Social networks likely played a huge role transitioning us from silly screen names to using our real-life names on the internet.  Otherwise, it&#8217;d be harder for our real-life friends to find us on Facebook, Twitter, and elsewhere.</p>\n\n\n\n<p>This prevailing attitude toward anonymity didn&#8217;t limit itself to social networks.  More and more, people shunned the idea of anonymous posts or comments on blogs and elsewhere.  </p>\n\n\n\n<p>There&#8217;s likely some form of stardom attached to using real names as well.  Everyone is just one video, one blog post, or one tweetstorm away from their 15 minutes in the spotlight.</p>\n\n\n\n<p>Even within the WordPress community over the years, I&#8217;ve witnessed a shift toward automatically disliking anonymous comments.  The prevailing idea is that a person&#8217;s contribution to a discussion has less worth if it&#8217;s hidden behind the veil of anonymity, that one&#8217;s opinions are invalid if they cannot be backed up by a real name. </p>\n\n\n\n<p>It opens the person to attack not based on their ideas but on how they choose to present themselves online.  This is a part of the culture that is unhealthy.</p>\n\n\n\n<p>In a time when you can effectively be shut out from the modern-day public square for making one wrong statement, anonymity is more important than ever for some.  Often, there&#8217;s no recourse for missteps after you&#8217;ve been taken down by the angry horde over a lapse in judgment.  Once your name has been hauled through the mud and back again, there&#8217;s little you can do about it.</p>\n\n\n\n<p>That little voice in the back of my mind, the one carefully crafted by my parents and teachers, is a reminder that a simpler period during the Internet Age once existed.</p>\n\n\n\n<p>There are other pockets of the internet where the pseudonym has persisted.  One area is in gaming.  You&#8217;d be the oddball if using a real name in an online multiplayer match.  <em>I suppose &#8220;Brett&#8221; or &#8220;Molly&#8221; doesn&#8217;t strike fear in the heart&#8217;s of enemies.</em>  The entire culture of online gaming is built upon anonymity, which is at odds with much of the internet world today.  Frankly, I find it oddly satisfying.</p>\n\n\n\n<p>I do wonder whether a real name online is important for civil discourse.  Quite often, online personas are much different than their real-life counterparts.  I mean, have you seen the numerous alpha-male groups on social networks made up of men who all think they&#8217;re the leaders of the pack?  <em>Hmmm…maybe there was some truth to that basement-dweller theory, after all.  Thanks for the heads up, Mom and Dad.</em></p>\n\n\n\n<p>The point is that an online persona, even attached to a real name, is still a persona.  It&#8217;s not much different than a fake user handle.</p>\n\n\n\n<p>I&#8217;d wager that the need to see a person&#8217;s real name has more to do with knowing exactly who to shun for controversial ideas rather than attaching some sort of validity to it.  Usernames can be altered.  You&#8217;re pretty much stuck with your real name, and mishaps follow your real name around.</p>\n\n\n\n<p>As we were reviewing the Tavern&#8217;s <a href=\"https://wptavern.com/comment-policy\">comment policy</a> last week, one point I brought up is that I believe we should allow anonymous comments.  A large reason for this is that people should feel safe to communicate their thoughts within the community.  While I won&#8217;t get into the specifics of internal discussions, I do hope that it&#8217;s something we officially remove from the policy.</p>\n\n\n\n<p>Being in favor of anonymity does not mean being in favor of personal attacks or handing over a license to use a vulgar term as a username.  It&#8217;s about protecting people&#8217;s ability to speak freely without fear of becoming an outcast within the community for an unpopular opinion.</p>\n\n\n\n<p>Sometimes anonymity provides people the freedom they need to effectively discuss ideas.  More importantly, it allows them to be a part of the community in a way that they choose.</p>\n\n\n\n<h2>Are We Moving back?</h2>\n\n\n\n<p>With the European Union, Japan, Australia, and other countries passing stricter privacy laws, there&#8217;s a growing movement to protect privacy across the world.  While this movement has focused more on large corporations and what they do with personal data, there&#8217;s an underlying fear that&#8217;s likely been there from the beginning.</p>\n\n\n\n<p>People are coming to the realization that we gave up too much.</p>\n\n\n\n<p>We handed over our names.  And, once we handed over our names, it was a slippery slope to handing over everything else about ourselves.  If you dig deep enough you can find the names of all my cats and when they were all born.</p>\n\n\n\n<p>I&#8217;m not sure how I feel about that.  I&#8217;m in too deep at this point.</p>\n\n\n\n<p>My parents from 20 years ago would not have liked the idea too much.  My dad just uses YouTube to watch videos on building stuff for the most part today (it took years to stop him sending me email chains), but my stepmom is right there along with everyone else on social networks.</p>\n\n\n\n<p>It&#8217;s odd to look back on the past 20 years to see how some of our initial fears surrounding anonymity have transformed.  In another 20 years, we&#8217;ll all be back to using pseudonyms again.  Call me out on it if I&#8217;m wrong.  I do wonder if we&#8217;ll look back at this time and think everyone was crazy for using their real names.</p>\n\n\n\n<p>I welcome your anonymous comments on this post.  Just don&#8217;t use &#8220;wanker&#8221; for your handle.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2019 19:20:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: GNU Project Maintainers Move to Oust Richard Stallman from Leadership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94714\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/gnu-project-maintainers-move-to-oust-richard-stallman-from-leadership\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5486:\"<p>GNU Project maintainers are working to oust Richard Stallman from his position as head of the organization. In a joint <a href=\"https://guix.gnu.org/blog/2019/joint-statement-on-the-gnu-project/\" rel=\"noopener noreferrer\" target=\"_blank\">statement</a> published yesterday morning, a collection of 22 GNU maintainers and developers thanked Stallman for his work and declared that he can no longer represent the project:</p>\n<blockquote><p>We, the undersigned GNU maintainers and developers, owe a debt of gratitude to Richard Stallman for his decades of important work in the free software movement. Stallman tirelessly emphasized the importance of computer user freedom and laid the foundation for his vision to become a reality by starting the development of the GNU operating system. For that we are truly grateful.</p>\n<p>Yet, we must also acknowledge that Stallman’s behavior over the years has undermined a core value of the GNU project: the empowerment of all computer users. GNU is not fulfilling its mission when the behavior of its leader alienates a large part of those we want to reach out to.</p>\n<p>We believe that Richard Stallman cannot represent all of GNU.</p></blockquote>\n<p><a href=\"https://www.stallman.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Stallman&#8217;s personal website</a> continues to prominently display his intentions to remain in the leadership role. He added the header to his site, following the publication of remarks he made regarding a 17-year old victim of sex trafficker Jeffrey Epstein, which precipitated his <a href=\"https://wptavern.com/gpl-author-richard-stallman-resigns-from-free-software-foundation\" rel=\"noopener noreferrer\" target=\"_blank\">resignation from both MIT and the Free Software Foundation</a>:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/Screen-Shot-2019-10-07-at-9.44.17-PM.png?ssl=1\"><img /></a></p>\n<p>The Stallman saga has continued to grow stranger in the aftermath of his resignations, as many were concerned that he would be homeless after his website featured a notice that he was &#8220;<a href=\"https://web.archive.org/web/20190929052858/https://stallman.org/\" rel=\"noopener noreferrer\" target=\"_blank\">Seeking Housing</a>,&#8221; accompanied by a <a href=\"https://web.archive.org/web/20190929045948/https://stallman.org/seeking-housing.html\" rel=\"noopener noreferrer\" target=\"_blank\">link</a> leading to his specific requirements for a temporary residence. His personal site was also reportedly <a href=\"http://techrights.org/2019/09/29/fsf-defaced-rms/\" rel=\"noopener noreferrer\" target=\"_blank\">vandalized</a> nine days ago with a message that he was stepping down from the GNU.</p>\n<p>The defacement with the false GNU resignation message was reverted shortly thereafter on September 30, and replaced with the header saying he continues to be &#8220;Chief GNUisance of the GNU Project&#8221; with no intention of stopping soon. Stallman has not yet publicly acknowledged the statement from the GNU maintainers. He has also not yet responded to our request for comment.</p>\n<p>Yesterday the Free Software Foundation (FSF) published a <a href=\"https://www.fsf.org/news/fsf-and-gnu\" rel=\"noopener noreferrer\" target=\"_blank\">statement</a> indicating it was re-evaluating its working relationship with the GNU project, which has provided some of its technical infrastructure, fiscal sponsorship, and copyright assignment:</p>\n<blockquote><p>GNU decision-making has largely been in the hands of GNU leadership. Since RMS resigned as president of the FSF, but not as head of GNU (&#8220;Chief GNUisance&#8221;), the FSF is now working with GNU leadership on a shared understanding of the relationship for the future. As part of that, we invite comments from free software community members.</p></blockquote>\n<p>Stallman responded the next day, indicating he wanted to work with FSF on restructuring the relationship between the two organizations:</p>\n<blockquote><p>I recently resigned as president of the FSF, but the FSF continues to provide several forms of crucial support for the GNU Project.  As head of the GNU Project, I will be working with the FSF on how to structure<br />\nthe GNU Project&#8217;s relationship with the FSF in the future.</p></blockquote>\n<p>The FSF maintains some critical responsibilities in that it currently <a href=\"https://en.wikipedia.org/wiki/Free_Software_Foundation#History\" rel=\"noopener noreferrer\" target=\"_blank\">holds the copyrights to enforce the GPL</a>. Stallman has recently called on people to <a href=\"http://techrights.org/2019/10/01/what-stallman-wants/\" rel=\"noopener noreferrer\" target=\"_blank\">continue supporting the FSF&#8217;s work</a>, despite his resignation from the organization.</p>\n<p>The small contingency of GNU project maintainers who penned the <a href=\"https://guix.gnu.org/blog/2019/joint-statement-on-the-gnu-project/\" rel=\"noopener noreferrer\" target=\"_blank\">statement</a> published yesterday seem to be on the same page with FSF in its rejection of Stallman&#8217;s leadership. Their message concludes with their intention to overhaul the leadership of the free software movement to be more inclusive of the people who have been alienated by Stallman&#8217;s behavior over the years:</p>\n<p>&#8220;We think it is now time for GNU maintainers to collectively decide about the organization of the project. The GNU Project we want to build is one that everyone can trust to defend their freedom.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2019 04:33:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: Google Chrome Announces Rollout Plan for Blocking Mixed Content Beginning January 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94672\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/google-chrome-announces-rollout-plan-for-blocking-mixed-content-beginning-january-2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3405:\"<p>The Google Security Team has <a href=\"https://security.googleblog.com/2019/10/no-more-mixed-messages-about-https_3.html\" rel=\"noopener noreferrer\" target=\"_blank\">announced</a> a timeline for when Chrome will begin blocking <a href=\"https://developers.google.com/web/fundamentals/security/prevent-mixed-content/what-is-mixed-content\" rel=\"noopener noreferrer\" target=\"_blank\">mixed content</a> by default in order to ensure that HTTPS browsing is more secure. Mixed content refers to HTTPS pages that load resources, such as images, videos, stylesheets, and scripts, over HTTP.</p>\n<p>The gradual rollout will begin with Chrome 79, which is scheduled for release in December 2019. The browser already blocks mixed scripts and iframes, but this release will add a new setting (that can be toggled on or off) for users to unblock it on a per-site basis.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/site-settings-unblock-mixed-content.png?ssl=1\"><img /></a></p>\n<p>The next phase of the rollout will progress with Chrome 80, due in January 2020, where mixed audio and video resources will get auto-upgraded to HTTPS. If they fail to load over HTTPS, Chrome will automatically block them. Mixed images will still load but Chrome will display a “Not Secure” warning in the omnibox next to the URL.</p>\n<p>The last phase of the rollout is planned for February 2020. Along with the release of Chrome 81, mixed content images will bet auto-upgraded to HTTPS and Chrome will block them if they fail to load.</p>\n<p>The Google Security Team reports that Chrome users now spend more than 90% of their browsing time on HTTPS on both desktop and mobile. The plan to begin blocking mixed content is targeted at addressing insecure holes in SSL implementations of sites that have already made the switch to HTTPS.</p>\n<p>WordPress site owners have plenty of time to ensure all their resources load over HTTPS. The official plugin directory has <a href=\"https://wordpress.org/plugins/search/mixed+content/\" rel=\"noopener noreferrer\" target=\"_blank\">several popular plugins</a> that can assist with fixing problems with mixed content. <a href=\"https://wordpress.org/plugins/really-simple-ssl/\" rel=\"noopener noreferrer\" target=\"_blank\">Really Simple SSL</a>, a plugin that is active on more than 3 million sites, has a built-in mixed content scan that shows users what they need to do if they aren&#8217;t seeing the green lock in the omnibar yet. It also includes a &#8220;mixed content fixer&#8221; for the back-end.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/10/mixed-content-scan-really-simple-ssl.png?ssl=1\"><img /></a></p>\n<p>Other popular plugins, such as <a href=\"https://wordpress.org/plugins/http-https-remover/\" rel=\"noopener noreferrer\" target=\"_blank\">SSL Mixed Content Fix</a> (20k active installs) and <a href=\"https://wordpress.org/plugins/ssl-insecure-content-fixer/\" rel=\"noopener noreferrer\" target=\"_blank\">SSL Insecure Content Fixer</a> (300k active installs) are focused specifically on fixing these issues and may assist in making other installed plugins compatible with HTTPS. They include tools that will diagnose insecure content and automatically perform basic fixes. The SSL Insecure Content Fixer plugin is also compatible with WordPress multisite and includes a network settings page to set defaults for the entire network.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Oct 2019 19:09:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: U.S. Supreme Court Denies Domino’s Appeal to Determine Whether Websites Must Be Accessible\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94674\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/u-s-supreme-court-denies-dominos-appeal-to-determine-whether-websites-must-be-accessible\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6872:\"<p>In what is seen as a win for accessibility advocates, the U.S. Supreme Court denied Domino&#8217;s petition to appeal a lower-court decision on whether the pizza chain&#8217;s website and mobile app must be accessible to those with disabilities. The earlier U.S. 9th Circuit court <a href=\"http://cdn.ca9.uscourts.gov/datastore/opinions/2019/01/15/17-55504.pdf\">ruled that websites fall under</a> Title III of the American with Disabilities Act (ADA).</p>\n\n\n\n<p>The original case was brought forth by Guillermo Robles, a blind man, who claimed the Domino&#8217;s website and app did not allow him to place an order in 2016.  Robles, like many other people with disabilities, relies on screen-reader software to use the web.  Despite using such software, he was not able to make an order.</p>\n\n\n\n<p>The primary issue of the case was whether the ADA applied to websites or apps in the same way that they applied to brick-and-mortar locations.  Title III specifically points out public places of accommodation but not websites.</p>\n\n\n\n<p>The specific <a href=\"https://www.ada.gov/regs2010/titleIII_2010/titleIII_2010_regulations.htm\">section of the ADA</a> related to the case reads as follows:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Section 36.201(a) contains the general rule that prohibits discrimination on the basis of disability in the full and equal enjoyment of goods, services, facilities, privileges, advantages, and accommodations of any place of public accommodation.</p><p>Full and equal enjoyment means the right to participate and to have an equal opportunity to obtain the same results as others to the extent possible with such accommodations as may be required by the Act and these regulations. It does not mean that an individual with a disability must achieve an identical result or level of achievement as persons without a disability.</p></blockquote>\n\n\n\n<p>The 9th Circuit decided the ADA also applied to businesses on the internet.</p>\n\n\n\n<p>There were three key issues in the case: whether the ADA applied to the website and app, whether Domino&#8217;s had fair notice to comply, and whether the court or the Department of Justice (DOJ) should decide the case.</p>\n\n\n\n<p>The DOJ is the body that regulates the ADA. Since it was signed into law in 1990, the DOJ has not created specific guidelines for how businesses can ensure their websites are within the law.</p>\n\n\n\n<p>One argument is that it would have been cheaper and easier for Domino&#8217;s to follow accessibility standards such as the Web Content Accessibility Guidelines (WCAG).  Such arguments don&#8217;t address the need for meaningful regulations from a governing body.  The WCAG are not legal guidelines in the U.S. However, the 9th Circuit ruled that the lack of guidelines does not remove Domino&#8217;s responsibility.</p>\n\n\n\n<p>Circuit Judge John B. Owens wrote in the <a href=\"https://www.supremecourt.gov/DocketPDF/18/18-1539/102950/20190613153344483_DominosPetitionAppendix.pdf\">9th Circuit decision</a>, &#8220;While we understand why Domino&#8217;s wants DOJ to issue specific guidelines for website and app accessibility, the Constitution only requires that Domino&#8217;s receive fair notice of its legal duties, not a blueprint for compliance with its statutory obligations.&#8221;</p>\n\n\n\n<p>The lack of such regulations is why this case was important from Domino&#8217;s standpoint.  While they lost the case, it may further push the need for more specific guidelines for businesses, both large and small, to follow.</p>\n\n\n\n<p>The lack of specific regulations could also be seen as <em>a feature rather than a bug</em>, to use a developer phrase.  Government-specific rules are often slow to keep up with the changing nature of the web.  Guidelines that apply one day may need to change soon thereafter.  It also leaves businesses the ability to make their websites accessible via a method of their choice rather than limiting what they can do to potentially bureaucratic rules that are out of touch with the modern web.</p>\n\n\n\n<p>At the same time, it could leave smaller business owners without large legal and website development budgets wondering if they could be looking at lawsuits in the future.  Courts were flooded with <a href=\"https://www.3playmedia.com/2019/06/12/2018sweb-accessibility-lawsuits/\">2,285 accessibility lawsuits in 2018</a>, which was nearly triple the 814 cases in 2017.</p>\n\n\n\n<h2>What Does This Mean for Website owners in the U.S.?</h2>\n\n\n\n<p>In terms of the case, the Supreme Court didn&#8217;t make a ruling.  They denied Domino&#8217;s petition and left the decision of the 9th Circuit in place, which covers much of the western U.S.  In the coming years, more cases will make their way through the courts.  More than likely, case law will continue becoming stronger in favor of making websites compliant with the ADA.</p>\n\n\n\n<p>If you run an online business, it&#8217;s past time to make sure your website is accessible.  It could be years before the current law is amended or new ones are written on the legislative level.  The winds of change will likely not favor those with inaccessible websites as more court decisions come down.</p>\n\n\n\n<p>In a nutshell, businesses with websites, apps, or other online presences need to make sure all people have access to their goods or services.  While there are no specific guidelines in the U.S., <a href=\"https://www.w3.org/WAI/standards-guidelines/wcag/\">WCAG</a> is the largely agreed-upon standards internationally.</p>\n\n\n\n<p>If you&#8217;re a small business owner using WordPress, you should start with a WordPress <a href=\"https://wordpress.org/themes/tags/accessibility-ready/\">theme labeled as accessibility-ready</a>.  It is worth noting that &#8220;accessibility-ready&#8221; does not mean that your website will automatically become accessible.  It simply means that the WordPress theme meets a minimum number of accessibility guidelines.  Custom content on your website should also follow the same guidelines.</p>\n\n\n\n<p>Accessibility is not a set-it-and-forget-it type of thing.  It&#8217;s something that business owners need to continually evaluate and make sure that all their customers, regardless of how that person accesses the internet, can enjoy the same services equally.</p>\n\n\n\n<p>The official theme review team is working through a long-term plan to <a href=\"https://wptavern.com/wordpress-theme-review-team-initiates-new-long-term-plan-to-make-all-wordpress-org-themes-accessible\">make all themes accessible</a> at WordPress.org.  Many theme businesses outside of WordPress.org also comply with those same guidelines.  If purchasing a theme, you should check with the business beforehand.</p>\n\n\n\n<p>As always, if you&#8217;re unsure whether your website meets legal guidelines, you&#8217;ll need to consult a lawyer who specializes in website accessibility.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Oct 2019 18:02:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"WordPress.org blog: People of WordPress: Alice Orru\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7288\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2019/10/people-of-wordpress-alice-orru/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8390:\"<p><em>You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Meet Alice Orru, from Sardinia, Italy.</strong></h2>\n\n\n\n<p>Alice Orru was born in Sardinia, an island in the middle of the Mediterranean Sea. As a child, she dreamt of becoming a flight attendant, traveling the world, and speaking many foreign languages.</p>\n\n\n\n<p>Unable to meet the height requirements of her chosen profession, Orru ended up choosing a different path in life, following the Italian mantra: “You have to study something that will guarantee a stable and secure job for life.”</p>\n\n\n\n<p>The unemployment rate in Sardinia is very high, a challenge shared throughout the surrounding islands. In addition to that, Alice wasn’t that keen on having the same job all her life, as her parents had.</p>\n\n\n\n<p>When Orru was 22 she moved to Siena, Tuscany, to finish her studies. That is when she created her first personal blog. The website was built on an Italian platform named Tiscali, which she later migrated to WordPress.com.</p>\n\n\n\n<p>After 2 years in Tuscany Orru moved to Strasbourg, France. She studied French and worked several jobs while living there. Her first serious job was in Milan &#8211; working 40 hours/week in the marketing department of a large, international company. She found herself surrounded by ambitious colleagues and a boss who constantly requested extra —unpaid— working hours per day.</p>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2019/10/IMG_2672.jpg?fit=632%2C422&ssl=1\" alt=\"Alice Orru\" class=\"wp-image-7291\" />Alice Orru\n\n\n\n<h2>Choices, choices, choices&#8230;</h2>\n\n\n\n<p>Alice gave up blogging because she wasn’t feeling inspired enough to write. She questioned whether she really wanted to do that job forever; working 10 hours per day under the neon lights of an office. It forced her to set aside her dreams for the time being, and for a while, she mainly lived for the weekends.</p>\n\n\n\n<p>Alice decided to leave the job and moved to Barcelona, Spain, all by herself, in 2012.</p>\n\n\n\n<p>After a few months of intense Spanish learning at the university, she found a job in an international clinic as a “Patient Coordinator.” Orru assisted international patients coming to Barcelona for their treatments. She acted as their translator, interpreter and administrative consultant.&nbsp;</p>\n\n\n\n<p>Patients came from Italy, France, England, Morocco, Senegal, and several other countries. Alice was so inspired by some of their stories, that she started to write again: She dusted off her WordPress blog and filled it with stories about her new life in Barcelona and some of the women she met at the clinic. “I was feeling stronger and more independent than ever,” Orru expressed.</p>\n\n\n\n<h2>Technical issues led to unexpected opportunities</h2>\n\n\n\n<p>In the summer of 2015, Alice was writing on her blog and got stuck with a technical problem. While she was searching through the WordPress.com documentation, she saw a pop-up in the bottom right corner of her screen. It was a staff member of Automattic, checking if she needed help. They chatted for a few minutes and the problem was solved. Alice left the chat with one question, though: how did that person on chat find a support job with WordPress?</p>\n\n\n\n<p>Alice found the official WordPress job page: <a href=\"http://jobs.wordpress.net/\"><strong>jobs.wordpress.net</strong></a> and noticed a job offer that caught her attention: WP Media, a French startup, was looking for a polyglot and remote customer service teammate for one of their plugins, WP Rocket. She read their requirements: fluency in English, French and possibly other languages, excellent experience with WordPress, and some coding skills.</p>\n\n\n\n<p>She knew she didn’t meet all the requirements, but could speak 4 languages, and she had a WordPress blog. She didn’t know anything about PHP, though. Orru had been a WordPress.com user for years and knew she was ready to learn more.</p>\n\n\n\n<p>Orru wrote a cover letter and sent her CV. A Skype interview was conducted and several days later she received the news that she had gotten the job!&nbsp;</p>\n\n\n\n<h2><strong>A steep learning curve</strong></h2>\n\n\n\n<p>The early days in her new job were intense. Alice felt inexperienced but was supported by her teammates. She started studying and reading everything about WordPress for beginners. Initially, she answered easy tickets from customers. All the while her teammates were sending useful material to read, setting up video-calls for 1 to 1 training, and encouraging her the entire time.</p>\n\n\n\n<p>Soon, Orru was replying to customers whose first language was either Spanish or Italian in their native language. This was much appreciated and resulted in several happy comments. Until that moment the plugin’s support had been offered only in English and French.</p>\n\n\n\n<h2><strong>Finding her way in the WordPress community</strong></h2>\n\n\n\n<p>At WordCamp Paris 2016, one of Alice’s teammates introduced her to how the WordPress community collaborated and kept in contact through Slack.</p>\n\n\n\n<p>“You speak multiple languages, why don’t you try to contribute to the polyglots team?” he asked.</p>\n\n\n\n<p>Alice knew very little about contributing to WordPress. She had only been working for WP Media for 6 months and didn’t feel ready to dive into a new challenge and start also contributing to WordPress.</p>\n\n\n\n<p>Yet, curiosity led her to join both the local Italian and the global WordPress Community on Slack. For the first few months, she mainly observed what was happening the channels. Then, she attended WordCamp Milan and met some members of the Italian Polyglots team.</p>\n\n\n\n<p>It was love at first string! Laura, one of the <a href=\"https://make.wordpress.org/polyglots/teams/?locale=it_IT\"><strong>General Translation Editors</strong></a> (GTE) for Italy, taught her how to start contributing and translating, following the polyglots guidelines. She also told her about the Italian community’s big efforts to work together, consistently, to boost and grow WordPress related events in Italy.</p>\n\n\n\n<p>With her teammates’ encouragement, Orru applied to WordCamps as a speaker and gave her first talk in December 2016 at WordCamp Barcelona. After that, she both spoke at WordCamp Torino on April 2017 and at WordCamp Europe in 2017.</p>\n\n\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2019/10/aliceorru-wordcamp-europe.jpg?fit=632%2C356&ssl=1\" alt=\"\" class=\"wp-image-7292\" />Alice Orru speaking at WordCamp Europe, in Paris, in 2017\n\n\n\n<h2><strong>Dreams evolve, all the time!</strong></h2>\n\n\n\n<p>Orru knows that her experiences are not just due to luck. She used her previous skills and passions and adapted them to a new career and life path.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“We all have some skills; and if we don’t know which they are exactly, we should take some time to make a list of the things we’re really good at. With that in mind, just try. Apply. Get involved. Don’t get stuck in the feeling of &#8216;I can’t do it because I don’t know enough&#8217;. So that&#8217;s what I did. Without even realizing it, I started putting into reality the dream of the little girl who was born on an island and wanted to travel and speak different languages.WordPress made this possible.  I’m now part of a big community, and I am proud of it.&#8221;</p><cite>Alice Orru</cite></blockquote>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2019/07/heropress_large_white_logo.jpg?resize=109%2C82&ssl=1\" alt=\"\" class=\"wp-image-7025\" width=\"109\" height=\"82\" /></div>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com, a community initiative created by <a href=\"https://profiles.wordpress.org/topher1kenobe/\">Topher DeRosia</a>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>!</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Oct 2019 04:24:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WPTavern: WooSesh 2019 Scheduled for October 9 and 10: Registration Now Open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94416\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wptavern.com/woosesh-2019-scheduled-for-october-9-and-10-registration-now-open\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2715:\"<p><a href=\"https://woosesh.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WooSesh</a> is happening next week on October 9 and 10, and registration is now open. This is the second edition of the virtual WooCommerce event hosted by <a href=\"https://wpsessions.com/\" rel=\"noopener noreferrer\" target=\"_blank\">WPSessions</a>. In addition to presentations focused entirely on e-commerce, the event will include a &#8220;Hallway Track&#8221; that offers opportunities for attendees to connect with each other, along with virtual swag donated by various WordPress companies.</p>\n<p>Day 1 will cover a wide range of topics for WooCommerce professionals with a focus on store builders, including sessions on designing with blocks, sales tax, optimizing the checkout experience, and store emails. The first day will also feature a two-hour &#8220;State of the Woo&#8221; keynote address from the WooCommerce team. They plan to discuss case studies, lessons learned, and priorities for the year ahead.</p>\n<p>Day 2 will focus on more technical topics for WooCommerce developers, such as &#8220;Custom Tables and the Checkout Bottleneck,&#8221; solving store UX problems, and productizing development work.</p>\n<p>The event is being organized by Brian Richards and Patrick Rauland. For the past two years it has been the official successor to the previously held in-person WooConf events. Given how successful WooSesh has been in connecting the WooCommerce community, it&#8217;s easy to see why WooConf has not yet been reinstated.</p>\n<p>&#8220;One thing I can say, having helped three WooConfs and both WooSesh&#8217;s, is that a virtual event is a fraction of the cost,&#8221; Rauland said. &#8220;And we had twice as many people show up live for WooSesh compared to an in person event.&#8221;</p>\n<p>In 2018, WooSesh had 2,800 registrants and more than 1,400 who participated live during the event. Rauland reported that 900 people watched the keynote address. After the conclusion, 94% of respondents to an attendee survey said they would like to attend again the next year.</p>\n<p>Last year attendees could watch all sessions for free as long as they attended at least one presentation during the live event. This year sessions will be free during the event to encourage maximum engagement, and the recordings will be available on WPSessions.com for a fee after its conclusion.</p>\n<p>Tickets are free, thanks to sponsors that include WooCommerce, Jilt, and Avalara. Attendees can <a href=\"https://woosesh.com\" rel=\"noopener noreferrer\" target=\"_blank\">register</a> on the website and <a href=\"https://woosesh.com/#schedule\" rel=\"noopener noreferrer\" target=\"_blank\">preview the schedule</a> in their own timezones.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Oct 2019 19:10:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: WordPress.org Bumps PHP Maximum for Plugin Directory to Version 7.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94637\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wptavern.com/wordpress-org-bumps-php-maximum-for-plugin-directory-to-version-7-2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4315:\"<p>The WordPress.org SVN system received a version bump to 7.2 on October 3.  This change means that plugin authors can now use newer PHP syntax in plugins they submit to the official plugin directory.  In the future, the version maximum will match what&#8217;s running on WordPress.org.  </p>\n\n\n\n<p>This should be good news for any plugin developers who are using newer PHP syntax.  Previously, authors were able to submit code using newer PHP functions if they had a compatibility check in the same file.  However, newer syntax wasn&#8217;t allowed.</p>\n\n\n\n<p>&#8220;The issue was that the Linter (being stuck on 7.0) prevented anyone from checking in code via SVN that used 7.1+ standards,&#8221; said Mika Epstein from the plugin review team.  &#8220;So things like the Spaceship operator would fail on commit and you&#8217;d be told the syntax was invalid. This was holding back certain plugins from committing code into the directory.&#8221;</p>\n\n\n\n<p>Epstein first opened a <a href=\"https://meta.trac.wordpress.org/ticket/3791\">ticket to address the issue</a> 13 months ago but said she&#8217;d been quietly asking for a fix for a while longer.</p>\n\n\n\n<p>The max PHP version isn&#8217;t listed anywhere in the <a href=\"https://developer.wordpress.org/plugins/wordpress-org/\">plugin guidelines</a>.  Technically, it&#8217;s an SVN limitation on WordPress.org and not something the plugin team chose.  However, for plugin authors, they may not have known about the issue until their plugin was rejected by the system.  They would then message the plugin team about the problem.  &#8220;I may end up putting something in the docs, but it&#8217;s a somewhat uncommon occurrence,&#8221; said Epstein.</p>\n\n\n\n<p>This has been an issue for some plugin authors since PHP 7.1 was released, which was December 1, 2016.  &#8220;It was a once a year issue, then twice, and then it inched up to every couple months,&#8221; said Epstein.  &#8220;As of September, at least once a month someone would hit this and complain to plugins.&#8221;</p>\n\n\n\n<p>One potential problem with blocking newer PHP code is with plugins that rely on third-party libraries, which may only have security patches in more recent versions.  However, Epstein said that she was not aware of any security issues that resulted from the version limitation.</p>\n\n\n\n<p>Andrey &#8220;Rarst&#8221; Savchenko pointed out in the ticket that &#8220;7.2 was released almost two years ago.&#8221;  While he says it&#8217;s an improvement over the previous 7.0 limitation, version 7.2 should not be a hard ceiling for plugins in the repository.</p>\n\n\n\n<p>PHP 7.3 was released on December 16, 2018, and PHP 7.4 <a href=\"https://wptavern.com/first-look-at-php-7-4-for-wordpress-developers\">will be released</a> on November 28, 2019.</p>\n\n\n\n<p>&#8220;Given PHP&#8217;s poor adoption curves,&#8221; responded Dion Hulse, &#8220;all that this means is that you can&#8217;t release a plugin through WordPress.org that only works on 15% of WordPress sites.  &#8220;You can even use newer functions in PHP if including compat code, just not newer syntax.&#8221;</p>\n\n\n\n<p>Plugin author Josh Pollock <a href=\"https://twitter.com/Josh412/status/1100487567236059136\">called awareness to the issue</a> on Twitter in February.  &#8220;Hours later, I&#8217;m downgrading a dependency, because it requires another dependency, which requires PHP 7.1.&#8221;</p>\n\n\n\n<p>&#8220;I think we got lucky and there were no bugs,&#8221; Pollock said of downgrading to an earlier version of the dependency.  &#8220;I don&#8217;t think I&#8217;ve used SVN since. I&#8217;m really fortunate that&#8217;s not a part of my life anymore.&#8221;</p>\n\n\n\n<p>&#8220;I agree with Rarst,&#8221; said Pollock.  &#8220;We should be allowing for PHP 7 and making it easier for plugins not to support sites on out of date versions of PHP.&#8221;  This echoes the sentiment of other developers who are pushing for WordPress to adopt newer standards or at least allow them to do so in their own plugins in the official directory.</p>\n\n\n\n<p>For the majority of plugin authors, this should be a non-issue as long as the SVN system remains updated to match the version of PHP used on WordPress.og.</p>\n\n\n\n<p>PHP 7.2 will lose active support on November 30, 2019, and security support on November 30, 2020.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Oct 2019 16:41:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"WPTavern: Matt Mullenweg and David Heinemeier Hansson Discuss WordPress Market Share, Monopolies, and Power in Open Source Communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94234\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:143:\"https://wptavern.com/matt-mullenweg-and-david-heinemeier-hansson-discuss-wordpress-market-share-monopolies-and-power-in-open-source-communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18041:\"<p>In what began as a heated conversation on Twitter, Automattic CEO Matt Mullenweg and Ruby on Rails creator and Basecamp co-founder David Heinemeier Hansson took to the airwaves to debate opposing viewpoints on market share, monopolies, and power in open source communities. Hansson reacted to a statement Mullenweg made in an interview after <a href=\"https://wptavern.com/automattic-raises-300m-in-series-d-investment-round-valuation-jumps-to-3-billion\" rel=\"noopener noreferrer\" target=\"_blank\">Salesforce Ventures invested $300 million in Automattic</a> last month.</p>\n<p>“I think there’s potential to get to a similar market share as Android, which I believe now has 85% of all handsets,&#8221; Mullenweg told <a href=\"https://techcrunch.com/2019/09/19/automattic-ceo-matt-mullenweg-about-raising-300-million-and-the-open-web/\" rel=\"noopener noreferrer\" target=\"_blank\">TechCrunch</a>. &#8220;When you think about it, open source has a virtuous cycle of adoption, people building on the platform and more adoption.&#8221;</p>\n<p>Hansson reacted on Twitter, sparking a conversation that received 116 comments.</p>\n<p>&#8220;&#8216;We want every website, whether it’s e-commerce or anything to be powered by WordPress&#8217; is a nasty, monopolistic goal,&#8221; he said. &#8220;Listening to Matt muse about 85% marketshare dreams is a real downer. But $300m is a down payment on monopoly dreams.&#8221;</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">“We want every website, whether it’s e-commerce or anything to be powered by WordPress” is a nasty, monopolistic goal. Listening to Matt muse about 85% marketshare dreams is a real downer. But $300m is a down payment on monopoly dreams. <a href=\"https://t.co/hf4HShISug\">https://t.co/hf4HShISug</a></p>\n<p>&mdash; DHH (@dhh) <a href=\"https://twitter.com/dhh/status/1174695189090308096?ref_src=twsrc%5Etfw\">September 19, 2019</a></p></blockquote>\n<p></p>\n<p>In an episode titled &#8220;<a href=\"https://rework.fm/open-source-and-power-with-matt-mullenweg/\" rel=\"noopener noreferrer\" target=\"_blank\">Open Source and Power</a>,&#8221; Mullwenweg joined Hansson on the Rework podcast for a more in-depth discussion that dives deeper into Mullenweg&#8217;s remarks on WordPress&#8217; potential market share.</p>\n<p>Hansson contends that he would like to see a very large, rich ecosystem of providers of tools and services on the web and expressed concern about WordPress growing many times faster than any of its competitors.</p>\n<p>Mullenweg countered that unique domains are not the only measure of a monopoly. He also referenced Shopify as having a thriving business with a small percentage of the e-commerce platform market share.</p>\n<p>&#8220;Even though open source can become a bit of a standard, it doesn&#8217;t prevent others from starting on it,&#8221; Mullenweg said. &#8220;The truth is if I had an evil hat on &#8211; let&#8217;s say I started doing evil monopoly stuff, people could easily fork the software &#8211; and they would. There&#8217;s a checks and balances there.&#8221;</p>\n<p>This is a <a href=\"https://wptavern.com/wordpress-governance-project-looks-for-new-leadership\" rel=\"noopener noreferrer\" target=\"_blank\">classic power dynamic in BDFL-led open source projects</a> where the potential for a fork checks the project leader&#8217;s actions.</p>\n<p>Hansson challenges Mullenweg&#8217;s assertion that a fork would be a threat to the project, arguing that this power is illusionary when a project has become as dominant as WordPress:</p>\n<blockquote><p>Technically someone could fork Ruby on Rails tomorrow. What is the likelihood that fork is going to succeed? Once you have this juggernaut of network effects, WordPress is growing so much faster than anyone else, the gravitational pull is huge. Should someone fork it, introducing incompatibilities, what is the likelihood that is going to be a serious contender? From me, my assessment is extremely low, just the same as if someone was to fork Ruby on Rails today and call it Snoopy on Pails. The odds of that being anything other than a curiosity for two days on Hacker News is extremely low.</p></blockquote>\n<p>The notion of Snoopy on Pails injected a bit of humor into the debate that remained high intensity for the hour-long discussion, but it also illustrated Hansson&#8217;s point regarding the absurdity of any kind of WordPress fork becoming a real threat to the project&#8217;s momentum.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">it was a privilege to have <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> come on <a href=\"https://twitter.com/reworkpodcast?ref_src=twsrc%5Etfw\">@reworkpodcast</a> and debate <a href=\"https://twitter.com/dhh?ref_src=twsrc%5Etfw\">@dhh</a> on tech monopolies and power dynamics in open source: <a href=\"https://t.co/Aewq4QTwFe\">https://t.co/Aewq4QTwFe</a>. Also thanks to <a href=\"https://twitter.com/AdamStddrd?ref_src=twsrc%5Etfw\">@AdamStddrd</a> for making this graphic that will make sense if you listen to the episode <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f603.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://t.co/4cqZpX2uJk\">pic.twitter.com/4cqZpX2uJk</a></p>\n<p>&mdash; Wailin Wong (@VelocityWong) <a href=\"https://twitter.com/VelocityWong/status/1179025482416820224?ref_src=twsrc%5Etfw\">October 1, 2019</a></p></blockquote>\n<p></p>\n<p>&#8220;Open source can provide a veil over true power and who has that power, and I would argue that WordPress being in the position that it is, a third of all sites, is tremendous power,&#8221; Hansson said. &#8220;Even if that power is somewhat distributed, it&#8217;s still very much so located mostly with the company backing that engine and that you built a commercial business on top of it that even uses the name, goes even further to say there&#8217;s a lot of power here.</p>\n<p>&#8220;Why would venture capitalists invest half a billion dollars into WordPress if they didn&#8217;t see Automattic as a company as having a lot of power over WordPress? The whole reason someone is able to raise that kind of money is off the back of someone who can pitch: &#8216;We have over a third of all websites on the internet and we think we can get to 85%.&#8217; That&#8217;s a very compelling venture story.&#8221;</p>\n<p>Mullenweg counters that if a Rails fork couldn&#8217;t attract a lot of users, that speaks to the Hansson&#8217;s stewardship of the project. He said that a typical WordPress release has 400-500 contributors with an estimated 10% from Automattic.</p>\n<p>&#8220;If 200 of those went someplace else because I did something really brain dead, that would be a pretty serious competitor, and there are some examples of that in open source history,&#8221; Mullenweg said. He contended that forks with enough weight behind them can become very interesting. On this point the two project leaders remained at odds.</p>\n<h3>How Open Source Market Dominance Impacts Diversity of Tools and Services on the Web</h3>\n<p>One of Hansson&#8217;s chief concerns with WordPress reaching 85% market share is what he described as the &#8220;death of diversity.&#8221; He perceives this pursuit of increased adoption as growing open source in monopolistic ways.</p>\n<p>&#8220;We&#8217;re living through an era right now where a small handful of big tech companies are exerting a completely undue amount of power over the internet, over discourse, over all sorts of things, and that&#8217;s something we should try to recoil from and at least learn from, not aspire to building more of,&#8221; Hansson said. &#8220;That&#8217;s what got this going &#8211; why isn&#8217;t WordPress in a great place only being a third of all the sites of the internet. Why does it need to get to 85%? Why does its growth need to be that explosive and that wild?&#8221;</p>\n<p>This is a question many in the WordPress community have asked in the past. Does the mission of democratizing publishing necessitate such a zealous drive towards market dominance?</p>\n<p>&#8220;I don&#8217;t want to see this concentration of power in one engine, no matter how good it is,&#8221; Hansson said.</p>\n<p>It is at this juncture that Mullenweg revealed more of his vision for WordPress becoming the &#8220;operating system of the web,&#8221; an idea he has floated several times over the past few years.</p>\n<p>&#8220;You have referred to WordPress a lot of times as blogging,&#8221; Mullenweg said. &#8220;I think of it more like a platform. If you look at how a lot of people are building on it, they use WordPress to bootstrap something that doesn&#8217;t look like WordPress at all. It might not even have a website. It might be powering just an API. It might be a headless or decoupled installation. It could be a store.&#8221;</p>\n<p>He likened the idea to Apache and nginx having a dominant market share (<a href=\"https://www.datanyze.com/market-share/web-and-application-servers/apache-http-server-market-share\" rel=\"noopener noreferrer\" target=\"_blank\">55%</a> and <a href=\"https://www.datanyze.com/market-share/web-and-application-servers/nginx-market-share\">23%</a> respectively) in the server space.</p>\n<p>&#8220;That doesn&#8217;t prevent the different types of websites that are built on it,&#8221; Mullenweg said. &#8220;If nginx got to 80 or 85%, that wouldn&#8217;t prevent the diversity or what people could put on their websites. WordPress could get to 85% and it wouldn&#8217;t mean that there&#8217;s any sort of monoculture or lack of diversity. If anything, it would allow people to focus more on what&#8217;s different and not recreating the WYSIWYG, the user system, the login, all that stuff we have all built a million times and you just don&#8217;t need to anymore, if something like WordPress solves your needs.&#8221;</p>\n<p>Hansson asked what it would look like if 85% of the web ran on WordPress, a question that the community behind the project hasn&#8217;t deeply examined yet. He encouraged listeners to consider what they want the internet to look like in the future:</p>\n<blockquote><p>What is the future I&#8217;d like to live in? What does a healthy, open, free internet look like? To me it looks like an internet with tons of different providers, tons of different tools, and what we collaborate around is protocols, not consolidation of software market share, that gives individuals and companies or even projects outsized power to dictate the matters of the internet.</p></blockquote>\n<p>Matt clarified that his comments on an 85% market share are not a goal, but rather a &#8220;trailing indicator&#8221; in the quest to create the best possible experience for developers and users. A growing market share is a signal of adoption in that sense, not a goal in itself.</p>\n<h3>WordPress Community Reactions to the Debate</h3>\n<p>After the initial exchange on Twitter, the broader tech community seemed delighted to hear Mullenweg and Hansson square off in a civil debate on topics that affect so many people working on the web. The conversation touched on a lot of the friction points in the WordPress ecosystem with Automattic being one of the most powerful companies driving WordPress&#8217; market share. Many listeners were grateful for answers to questions they have had for years.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Not sure <a href=\"https://twitter.com/dhh?ref_src=twsrc%5Etfw\">@dhh</a> realizes it, but he spoke for hundreds if not thousands of WordPress community members that have had similar questions for <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> spanning the last few years. Most aren’t afforded the same opportunity or carry the same clout to have it.  <a href=\"https://t.co/z7wSIGJKAZ\">https://t.co/z7wSIGJKAZ</a></p>\n<p>&mdash; Matt Medeiros (@mattmedeiros) <a href=\"https://twitter.com/mattmedeiros/status/1179201126878629888?ref_src=twsrc%5Etfw\">October 2, 2019</a></p></blockquote>\n<p></p>\n<p>However, the idea of WordPress as web infrastructure and the level of market dominance (85%) discussed in the podcast are controversial and even off-putting for some who are deeply invested in the platform.</p>\n<p>&#8220;Matt appears to think of WordPress as infrastructure for the web, in the same way that Google and Facebook think of themselves as infrastructure for the web,&#8221; Morten Rand-Hendriksen said.</p>\n<p>&#8220;In the conversation about the dangers of market control, monopolization, and monoculture, Matt says, &#8216;We are not a grain, we are the soil.&#8217; The only way to interpret that from my position is &#8216;WordPress is not a thing on the web. It is the web,&#8217; i.e. infrastructure. A future where WP is web infrastructure is something I think very few people actually want, open source or not.&#8221;</p>\n<p>On the podcast, Mullenweg argued that open source allows for competition in a way proprietary software does not, but Rand-Hendriksen said he sees this as a logical fallacy.</p>\n<p>&#8220;He talks at the same time about WP being infrastructure and powering 85% of the web AND about this being a reason for others to fight it with other solutions,&#8221; he said. &#8220;So monopolization leads to competition somehow. I don&#8217;t think WordPress is infrastructure, or that it should power 85% of the web, especially after hearing this conversation.</p>\n<p>&#8220;If we truly believe in this idea of open source as diversification and forking, WP should actively support other projects and try to not be the dominant force on the web. WP is not infrastructure, it is very much a grain that has become a monoculture.&#8221;</p>\n<p>Matt Medeiros, host of the <a href=\"http://youtube.com/themattreport\" rel=\"noopener noreferrer\" target=\"_blank\">Matt Report podcast</a> focused on WordPress business and entrepreneurs, said that while the conversation answered a lot of questions, it left him wanting more.</p>\n<p>&#8220;The cloud of uncertainty that hangs above a large portion of this community is directly formed from lack of clear communication in both <a href=\"http://WordPress.org\">WordPress.org</a> and how Automattic + Jetpack move in lockstep with the open source project,&#8221; Medeiros said. &#8220;As we see hundreds of millions of dollars invested, with billions of dollars of valuation going to a single company, surely the optics leave one wondering how all of this gets repaid to investors?&#8221;</p>\n<p>Automattic invariably comes under more public scrutiny regarding its investments due to having the WordPress project lead as its CEO. One interesting observation Mullenweg made during podcast is that Automattic is just one of many larger players that make up the the WordPress economy, which he has previously estimated at $10 billion/year.</p>\n<p>&#8220;Automattic makes probably 2-3% of the revenue in the WordPress world,&#8221; Mullenweg said. &#8220;There are companies like GoDaddy, which might not contribute very much back to core, but probably have 3 or 4 times the number of subscribers than us running WordPress. I think about that a lot. I want to grow the whole ecosystem, not just our slice of it.&#8221;</p>\n<p>Revenue is not always equal to influence, and a good portion of the end of the podcast tackled questions about power and leadership in open source.</p>\n<p>&#8220;David&#8217;s questions are spun from the threads that fear monopoly on the web, as much as we fear a singular rule of decision making in the open source project,&#8221; Medeiros said. &#8220;I think David did well at challenging Matt&#8217;s view on the desire of world domination and how undesirable it is to earn the title of Benevolent Dictator &#8212; but it left me wanting more. For example, in an attempt to throw a curveball, Matt pointed out, the investment is made in Automattic &#8212; not WordPress &#8212; a point so opaque it didn&#8217;t fool David, but didn&#8217;t have him pressing any deeper.</p>\n<p>&#8220;Had David viewed this conversation through the lens of our community, he would know that Automattic and WordPress.com enjoy the full benefit of leveraging the WordPress brand, a brand protected by a foundation that Matt himself founded, which may have guided the podcast episode into the ethics of it all.&#8221;</p>\n<p>While Mullenweg&#8217;s claim that &#8220;WordPress belongs to you as much as it belongs to anyone else&#8221; is true in the sense that the software is freely available to be used and modified by anyone, the full power of <a href=\"http://wpandlegalstuff.com/using-wordpress-trademarks-business-product-service/\" rel=\"noopener noreferrer\" target=\"_blank\">leveraging the WordPress brand</a> does not belong to everyone.</p>\n<p>&#8220;I don&#8217;t think Matt would have been willing to have this kind of conversation with me or most members from the the general community, so I&#8217;m glad someone of David&#8217;s clout was able to engage here,&#8221; Medeiros said. &#8220;I do sympathize with all that Matt is responsible for and it&#8217;s not a challenge I think I&#8217;d be up for, given the opportunity. I love this community and want to see people stay, contribute, and flourish &#8212; not walk away because they felt unheard. DHH isn&#8217;t the hero we asked for, but he&#8217;s the hero we need right now. Hopefully he continues to keep a watchful eye over where WordPress is heading.&#8221;</p>\n<p>If you only listen to one podcast this week, <a href=\"https://rework.fm/open-source-and-power-with-matt-mullenweg/\" rel=\"noopener noreferrer\" target=\"_blank\">Hansson&#8217;s conversation with Mullenweg</a> is an invigorating battle of opposing open source ideals held as a respectful exchange. In defending their positions, both reveal how their experiences of the early days of the web shaped their ideologies and approaches to open source project leadership and commercialization. Conversations like these are rare but long overdue, as the WordPress community considers its growing influence on the future of the web.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Oct 2019 18:59:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WordPress Theme Review Team Brings Back Review Shindigs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94599\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/wordpress-theme-review-team-brings-back-review-shindigs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3730:\"<p>The WordPress theme review team (TRT) is kicking off a review weekend October 5 and will begin at 10:00 Coordinated Universal Time (UTC).  These events, called &#8220;review shindigs,&#8221; are marathon sessions where the team joins together to review themes and teach best practices.  The current plan is to hold the event on the first Saturday of every month.</p>\n\n\n\n<p>&#8220;The goal of the review weekend is to get together and do as many quality reviews as possible,&#8221; wrote Carolina Nymark, one of the team&#8217;s review representatives, in the <a href=\"https://make.wordpress.org/themes/2019/10/03/review-weekend\">event&#8217;s announcement</a>.  Events sometimes have different goals, depending on what the team needs to work on at the time.  </p>\n\n\n\n<p>Most of the event will happen over the team&#8217;s <a href=\"https://wordpress.slack.com/messages/themereview\">Slack channel</a>.  They will also hold a live presentation or Q&amp;A on Zoom at 13:00 UTC.  Anyone is welcome to attend (the Zoom link will be provided in Slack).  This will help teach those who are interested in how to perform reviews and check common issues.  Anyone attending is also able to submit topics for discussion in the comments on the announcement post.</p>\n\n\n\n<p>The TRT originally <a href=\"https://make.wordpress.org/themes/2019/09/24/meeting-notes-for-tuesday-24th-september-2019/\">announced plans</a> for the event after the last team meeting, but it was overshadowed by other news, such as the <a href=\"https://wptavern.com/theme-review-team-restructures-into-project-representatives\">team moving to a flat structure</a>.  &#8220;Not sure if anyone but myself will be there,&#8221; joked Nymark.  &#8220;It&#8217;s short notice.  Some of the team reps already had other plans.&#8221;</p>\n\n\n\n<p>Anyone from the WordPress community is allowed to participate in the event by simply commenting on a ticket without being assigned a review.  Nymark provided links on <a href=\"https://make.wordpress.org/themes/handbook/get-involved/become-a-reviewer/\">how to become a reviewer</a> and the team&#8217;s <a href=\"https://make.wordpress.org/themes/handbook/get-involved/onboarding-for-new-reviewers/\">reviewer onboarding process</a> to get new reviewers started.</p>\n\n\n\n<p>Review shindigs can help new reviewers because it puts them in touch with more experienced reviewers at a time when they know someone will be online to answer questions.  They&#8217;re also a team-building exercise where people can join together and work toward a common goal.</p>\n\n\n\n<p>Currently, <a href=\"https://themes.trac.wordpress.org/\">214 tickets</a> are awaiting review. A successful event would significantly cut that number down.</p>\n\n\n\n<h2>Events From the Past</h2>\n\n\n\n<p>Theme review shindigs have seen varying levels of success over the years.  In the TRT&#8217;s earliest days, review gatherings were regular events and helped keep the ever-growing ticket queue under control.  Participation waned over time as leaders within the team switched to other projects or no longer had time to run the events.  Proposals to bring back them back have not gone far in the last couple of years.</p>\n\n\n\n<p>The last TRT shindig was a <a href=\"https://make.wordpress.org/themes/2016/12/05/december-shindig-recap/\">December 2016 event</a> that saw over 50 participants.  Reviewers worked on 108 tickets throughout the weekend.  The event also coincided with contributor day at WordCamp US, which helped bump up participation numbers.</p>\n\n\n\n<p>Jose Castaneda, Cristiano Zanca, Benjamin Lu, and Afzaal Ahmed held a live stream that covered how to load scripts and styles in themes in the previous review event.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Oct 2019 18:29:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Matt: Debating OSS with DHH\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=50262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"https://ma.tt/2019/10/debating-oss-with-dhh/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:931:\"<p>The other week I ended up going back and forth in tweets with <a href=\"https://dhh.dk/\">David Heinemeier Hansson</a>, it wasn&#8217;t going anywhere but he graciously invited me to their podcast and we were able to expand the discussion in a way I found really refreshing and mind-opening.</p>\n\n\n\n<p>DHH and I have philosophies around work and open source that I believe overlap 95% or more, so that makes where we have differences all that more interesting to mine. Although we would see each other logged into the same server 15 years ago, we haven&#8217;t actually spoken directly until this podcast started, but the conversation flowed so naturally you&#8217;d think we have been talking since then.</p>\n\n\n\n<p>Check out the <a href=\"https://rework.fm/open-source-and-power-with-matt-mullenweg/\">episode on Open Source and Power on the Rework Podcast</a>, hopefully you enjoy listening as much as we enjoyed recording it.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Oct 2019 00:04:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: First Look at PHP 7.4 for WordPress Developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94552\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/first-look-at-php-7-4-for-wordpress-developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7152:\"<p>PHP 7.4 is slated for release on November 28, 2019.  WordPress 5.3 will also <a href=\"https://core.trac.wordpress.org/ticket/47783\">include several commits</a> that address deprecated features.</p>\n\n\n\n<p>It&#8217;s unlikely that most WordPress plugin and theme developers will be able to use the new PHP 7.4 features for a while except when working on setups where they have some measure of control over the environment.  Given WordPress&#8217; reluctance to bump the minimum PHP version to the latest supported versions, it could be years before it&#8217;s safe to use new features.  However, developers should make sure their plugins and themes are compatible with 7.4.  It&#8217;s also good practice to keep up with current features.</p>\n\n\n\n<p>WordPress 5.2 <a href=\"https://wordpress.org/news/2019/05/jaco/\">bumped the minimum requirement</a> to PHP 5.6 with a recommendation of PHP 7.3.  The following is the breakdown for current <a href=\"https://wordpress.org/about/stats/\">PHP usage stats</a> for WordPress installs:</p>\n\n\n\n<ul><li>PHP 7.3 &#8211; 9.6%</li><li>PHP 7.2 &#8211; 22.2%</li><li>PHP 7.1 &#8211; 13.5%</li><li>PHP 7.0 &#8211; 14.9%</li><li>PHP 5.6 &#8211; 25.7%</li></ul>\n\n\n\n<p>Currently, PHP 7.2 and 7.3 are the only versions receiving active support.  PHP will drop security support for version 7.1 on December 1.</p>\n\n\n\n<h2>New Features</h2>\n\n\n\n<p>PHP 7.4 includes a number of <a href=\"https://www.php.net/manual/en/migration74.php\">new features</a> that will make writing code easier.  The following is a small overview of some of the features that will likely be useful for WordPress plugin and theme authors.</p>\n\n\n\n<h3>Typed Properties</h3>\n\n\n\n<p>PHP first introduced type hinting in 5.0 and has continued improving the feature.  PHP 7.0 introduced return type declarations.  PHP 7.4 steps it up a notch and allows developers to declare types for class properties.  This lets developers make sure the type of data assigned to a specific property is always that data type.</p>\n\n\n\n<p>In the following example, the <code>$id</code> property can only be assigned an integer and the <code>$title</code> property a string.  Attempting to assign the wrong data type will result in a fatal error if strict types are declared.  Otherwise, PHP will coerce the value to the correct type.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\nclass Event {\n\n    public int $id;\n\n    public string $title;\n}\n</pre>\n\n\n<h3>Arrow Functions</h3>\n\n\n\n<p>Many developers have been clamoring for arrow functions similar to JavaScript. They are pretty sweet to use.  However, PHP&#8217;s arrow functions, also called &#8220;short closures,&#8221; are slightly different.  PHP 7.4 introduces the <code>fn</code> keyword (now a reserved keyword).  Short closures can only contain one expression and have no <code>return</code> keyword.  They&#8217;re not quite as powerful as their JavaScript cousins, but they do offer a quick solution for some scenarios.</p>\n\n\n\n<p>For example, the following code snippet shows two different ways to build an array of user emails from a collection of user objects.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Old way, but still acceptable.\n$value = array_map( function( $user ) {\n    return $user-&gt;user_email;\n}, $users );\n\n// New way.\n$value = array_map( fn( $user ) =&gt; $user-&gt;user_email, $users );\n</pre>\n\n\n<h3>Unpacking Inside of Arrays</h3>\n\n\n\n<p>Argument unpacking was <a href=\"https://www.php.net/manual/en/migration56.new-features.php\">introduced in PHP 5.6</a>, so this may still be unfamiliar territory for many developers in the WordPress space.  It&#8217;s been an invaluable feature in some of my projects.</p>\n\n\n\n<p>PHP 7.4 allows developers to unpack an array within an array.  This should be faster than <code>array_merge()</code> because the spread operator (<code>...</code>) is a language construct rather than a function.</p>\n\n\n\n<p>Consider the following example of injecting an array of two colors within a larger array of colors.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n$colors_a = [ \'green\', \'blue\' ];\n\n$colors_b = [ \'red\', ...$colors_a, \'yellow\', \'purple\' ];\n\n// [ \'red\', \'green\', \'blue\', \'yellow\', \'purple\' ];\n</pre>\n\n\n<h3>Null Coalescing Assignment Operator</h3>\n\n\n\n<p>The null coalescing assignment operator is a shorthand way of combining an <code>isset()</code> check with a ternary operator.</p>\n\n\n\n<p>The following example shows how to check the <code>$product[\'id\']</code> variable.  If it&#8217;s set, do nothing.  Else, assign it the value on the right.  You can see the evolution of the code between PHP versions.  It&#8217;s much simpler to write in 7.4.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Pre-PHP 7.0.\n$product[\'id\'] = isset( $product[\'id\'] ) ? $product[\'id\'] : 0;\n\n// PHP 7.0.\n$product[\'id\'] = $product[\'id\'] ?? 0;\n\n// PHP 7.4.\n$product[\'id\'] ??= 0;\n</pre>\n\n\n<h2>Deprecated Features</h2>\n\n\n\n<p>PHP 7.4 will deprecate several features.  Plugin and theme authors will want to <a href=\"https://www.php.net/manual/en/migration74.deprecated.php\">consult the complete list</a> to determine whether they should update any outdated code.  I cherry-picked a few items that I&#8217;ve seen in plugin and theme code over the last few years.  Most other deprecated features are unlikely in current code bases.</p>\n\n\n\n<h3>Nested Ternary Operators Without Parenthesis</h3>\n\n\n\n<p>Nested ternary operators are generally something you should avoid as a developer.  Seriously.  Just don&#8217;t write them.  They&#8217;re tough to follow and are prone to bugs due to human error.  However, if you&#8217;re going to throw caution to the wind and dismiss good advice, at least use parenthesis.  PHP 7.4 deprecated nested ternaries without them.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Not OK (deprecated).\n$value = $a ? $b : $c ? $d : $e;\n\n// OK.\n$value = ( $a ? $b : $c ) ? $d : $e;\n\n// OK.\n$value = $a ? $b : ( $c ? $d : $e );\n</pre>\n\n\n<h3>Using array_key_exists() on Objects</h3>\n\n\n\n<p>Developers should not use <code>array_key_exists()</code> on objects simply because objects are not arrays.  Instead, use the more appropriate <code>property_exists()</code> function or <code>isset()</code>.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Not OK (deprecated).\nif ( array_key_exists( $property, $object ) ) {}\n\n// OK.\nif ( property_exists( $object, $property ) ) {}\n\n// OK.\nif ( isset( $object-&gt;$property ) ) {}\n</pre>\n\n\n<h3>Array and String Offset Access With Curly Braces</h3>\n\n\n\n<p>Using curly braces for array and string offset access is a bit more of a rarity, but I&#8217;ve seen it in the wild a couple of times.  Make sure you&#8217;re using square brackets such as <code>[]</code> instead of curly brackets like <code>{}</code>.</p>\n\n\n<pre class=\"brush: php; gutter: false; title: ; wrap-lines: false; notranslate\">\n// Not OK (deprecated).\n$value = $a{ $key };\n\n// OK.\n$value = $a[ $key ];\n</pre>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2019 18:16:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: BuddyPress 5.0 Introduces BP REST API, Paving the Way for Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=94453\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/buddypress-5-0-introduces-bp-rest-api-paving-the-way-for-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3919:\"<p><a href=\"https://buddypress.org/2019/09/buddypress-5-0-0-le-gusto/\" rel=\"noopener noreferrer\" target=\"_blank\">BuddyPress 5.0.0</a> “Le Gusto” was released this week with the long-awaited BP REST API, a new Invitations API, and BuddyPress info on the Site Health screen. The release was named for a favorite pizza restaurant in Fortaleza, Brazil, where BP REST API contributor and core committer <a href=\"https://profiles.wordpress.org/espellcaste/\" rel=\"noopener noreferrer\" target=\"_blank\">Renato Alves</a> resides.</p>\n<p>The new REST API is <a href=\"https://developer.buddypress.org/bp-rest-api/\" rel=\"noopener noreferrer\" target=\"_blank\">fully documented</a> and includes endpoints for members, groups, activities, private messages, screen notifications and extended profiles.</p>\n<p>The first feature powered by the new API is an improved interface for managing group members. It enables administrators to quickly search for specific members to promote, demote, ban, or remove.</p>\n<p><div class=\"wp-video\"><!--[if lt IE 9]><script>document.createElement(\'video\');</script><![endif]-->\n<a href=\"https://wptavern.com/wp-content/uploads/2019/06/5zJCxp2ARb.mp4\">https://wptavern.com/wp-content/uploads/2019/06/5zJCxp2ARb.mp4</a></div></p>\n<p>BuddyPress 5.0 also includes a new <a href=\"https://bpdevel.wordpress.com/2019/09/16/new-invitations-api-coming-in-buddypress-5-0/\" rel=\"noopener noreferrer\" target=\"_blank\">BP Invitations API</a> to help developers better manage group invites and membership requests.</p>\n<p>BuddyPress site administrators may notice <a href=\"https://wptavern.com/buddypress-5-0-to-display-debug-info-in-the-new-site-health-info-screen\" rel=\"noopener noreferrer\" target=\"_blank\">a new panel in the Site Health Info screen</a>, containing plugin-specific debug information that may be useful when seeking help in the forums.</p>\n<p>This release <a href=\"https://wptavern.com/buddypress-5-0-to-update-password-control-to-match-wordpress\" rel=\"noopener noreferrer\" target=\"_blank\">updates the BP Nouveau template pack</a> to use the same password control as the one used in WordPress core. It provides a more consistent interface for users when setting their passwords on the registration page and on the user’s general settings page.</p>\n<h3>Blocks Are Coming to BuddyPress</h3>\n<p>The BP REST API offers a myriad of opportunities for developers to create new interactive features and front-end experiences, as well as improve performance by replacing AJAX calls. It also opens up the world of block creation. BP core contributors and community developers will have a much easier time creating blocks, since Gutenberg mainly uses REST.</p>\n<p>In anticipation of BP blocks, <a href=\"https://wptavern.com/buddypress-5-0-to-add-category-for-storing-buddypress-blocks\" rel=\"noopener noreferrer\" target=\"_blank\">5.0 includes a new panel in the block inserter</a> that allows developers to organize their custom blocks under a BuddyPress category.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2019/08/buddypress-blocks-panel.png?ssl=1\"><img /></a></p>\n<p>BuddyPress 6.0 <a href=\"https://buddypress.trac.wordpress.org/ticket/8048\" rel=\"noopener noreferrer\" target=\"_blank\">may include core blocks for specific components</a> and core blocks may ultimately replace the plugin&#8217;s existing widgets. Contributors are still discussing which blocks to begin building. They are looking to get community feedback on blocks that will be the most useful, particularly from BuddyPress theme developers. The team <a href=\"https://bpdevel.wordpress.com/2019/10/01/bp-dev-chat-agenda-october-2-2019/\" rel=\"noopener noreferrer\" target=\"_blank\">plans to discuss 6.0 release priorities</a> during the BP core dev chat on <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20191002T1900\" rel=\"noopener noreferrer\" target=\"_blank\">October 2, 2019, at 1900 UTC</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2019 11:06:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress.org blog: The Month in WordPress: September 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7280\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2019/10/the-month-in-wordpress-september-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7584:\"<p>September has been a particularly busy month in the WordPress community—a lot of important work has been done as everyone in the project works towards an upcoming major release. Read on to find out more about this and everything else that has been going on over the past month.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.2.3 Security and Maintenance Release</h2>\n\n\n\n<p>Early in September, <a href=\"https://wordpress.org/news/2019/09/wordpress-5-2-3-security-and-maintenance-release/\">version 5.2.3 of WordPress was released</a> as a security and maintenance release. Sixty-two individuals contributed to its 29 fixes and enhancements.</p>\n\n\n\n<p>The security issues fixed in this release owe thanks to numerous people who disclosed them responsibly. You can read more about the vulnerability reporting process <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">in the Core handbook</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress 5.3 Enters Beta</h2>\n\n\n\n<p>WhileWordPress 5.3 is slated for release on November 12, it has already entered the beta phase with <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\">the second beta release being made available</a> at the end of September. As this is a major release, it will feature a number of new features and enhancements, including <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">significant improvements to the block editor</a>, <a href=\"https://make.wordpress.org/core/2019/09/25/whats-new-in-site-health-for-wordpress-5-3/\">updates to the Site Health component</a>, <a href=\"https://make.wordpress.org/core/2019/09/24/new-block-apis-in-wordpress-5-3/\">new block APIs</a>, <a href=\"https://make.wordpress.org/core/2019/09/23/core-widgets-new-aria-current-attribute-in-wordpress-5-3/\">accessibility updates</a>, and <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">much more</a>.</p>\n\n\n\n<p>You can test the 5.3 beta release by installing <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">the WordPress Beta Tester plugin</a> on any WordPress site, although as this is software that is currently in development, we don’t recommend installing it on a live site.</p>\n\n\n\n<p>Want to get involved in building this release? <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">Test the beta</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Date/Time Component Improvements</h2>\n\n\n\n<p>For over a year, contributors involved in <a href=\"https://make.wordpress.org/core/components/date-time/\">the Date/Time component</a> of WordPress Core have been working hard on the “wp_date” project. The goal of this project is to fix and streamline the way that Core handles times and dates throughout the platform.</p>\n\n\n\n<p>This ambitious project has seen incremental changes over the last few Core releases. The upcoming 5.3 release <a href=\"https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/\">will include the final and most significant changes</a> to the component, bringing much-needed stability to time handling in WordPress Core.</p>\n\n\n\n<p>Want to get involved in the Date/Time component of WordPress Core? <a href=\"https://make.wordpress.org/core/components/date-time/\">Learn more about it</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core-datetime channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Theme Review Team Structure</h2>\n\n\n\n<p>After recent discussions around the goals of the Theme Review team, <a href=\"https://make.wordpress.org/themes/2019/09/24/new-theme-review-team-structure/\">some changes have been made</a> to the leadership structure of the team. The team leads are now ‘representatives’ of different areas of the work that they do. This flat structure allows for representatives to work in more loosely defined areas so they contribute to the team in more diverse ways, and helps the team to be more focused on setting and achieving their goals. The new structure is outlined <a href=\"https://make.wordpress.org/themes/handbook/about/members/\">in the team handbook</a>.</p>\n\n\n\n<p>Want to get involved in reviewing themes for WordPress? Follow <a href=\"https://make.wordpress.org/themes/\">the Theme Review team blog</a>, and join the #themereview channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Default Theme: Twenty Twenty</h2>\n\n\n\n<p>The upcoming 5.3 release will also include <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">a new default theme for WordPress</a>, <em>Twenty Twenty</em>. This theme will have a strong focus on readability and accessibility while being optimized for the block editor that first shipped with WordPress 5.0.</p>\n\n\n\n<p>Development of <em>Twenty Twenty</em> has been going quickly, with <a href=\"https://make.wordpress.org/core/2019/09/30/twenty-twenty-update/\">a recent update</a> showing more of the design and layouts that you can expect when the theme is released with WordPress 5.3 in November.</p>\n\n\n\n<p>Want to get involved in building <em>Twenty Twenty</em>? You can <a href=\"https://github.com/WordPress/twentytwenty\">contribute on GitHub</a>, follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The Gutenberg project has continued to see regular updates with <a href=\"https://make.wordpress.org/core/2019/09/19/whats-new-in-gutenberg-18-september/\">the latest version</a> set to be included in WordPress 5.3.</li><li>Members of the Community Team <a href=\"https://make.wordpress.org/community/2019/09/13/call-for-participants-creating-a-welcoming-and-diverse-space-online-workshop-on-sun-oct-6/\">will run a workshop</a> to help event organizers create welcoming and diverse spaces for attendees.&nbsp;</li><li>There are some <a href=\"https://make.wordpress.org/updates/2019/09/20/wordpress-user-pro-survey-11-questions-and-a-script/\">proposed updates for the annual WordPress user survey</a> that need community feedback.</li><li><a href=\"https://make.wordpress.org/docs/2019/09/23/summary-for-helphub-meeting-23-september-2019/\">Work continues on the HelpHub project</a> where contributors are moving documentation to the updated support portal.</li><li>The Gutenberg team performed further usability tests in August, <a href=\"https://make.wordpress.org/test/2019/09/06/gutenberg-usability-testing-for-august-2019/\">with some interesting results</a>.</li><li><a href=\"https://buddypress.org/2019/09/buddypress-5-0-0-le-gusto/\">Version 5.0 of BuddyPress was released</a> near the end of this month, featuring a new REST API, improved group management, and other enhancements.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Oct 2019 08:05:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 04 Nov 2019 17:19:14 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 04 Nov 2019 17:00:09 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(200836,'_transient_timeout_jetpack_sync_constants_await','1572915356','no'),(200837,'_transient_jetpack_sync_constants_await','1572911756.63','no'),(196404,'_site_transient_timeout_bsf_get_bundled_products','1573113890','no'),(187078,'_transient_timeout_wc_term_counts','1575505662','no'),(187079,'_transient_wc_term_counts','a:2:{i:18;s:1:\"4\";i:17;s:1:\"0\";}','no'),(187342,'_transient_timeout_wc_customer_bought_product_6c42ed44fc434330c637e956f5ca00a2','1573167053','no'),(187343,'_transient_wc_customer_bought_product_6c42ed44fc434330c637e956f5ca00a2','a:2:{s:7:\"version\";s:10:\"1570039467\";s:5:\"value\";a:0:{}}','no'),(186308,'_transient_timeout_wc_customer_bought_product_9faa04ceff2c367b5462edf9adf061f0','1572913153','no'),(186309,'_transient_wc_customer_bought_product_9faa04ceff2c367b5462edf9adf061f0','a:2:{s:7:\"version\";s:10:\"1570039467\";s:5:\"value\";a:0:{}}','no'),(199803,'_site_transient_timeout_community-events-e19b703d3f9c1a5ee9efb214cfefd74a','1572931151','no'),(199804,'_site_transient_community-events-e19b703d3f9c1a5ee9efb214cfefd74a','a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"104.32.124.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:28:\"OC WordPress - Design Meetup\";s:3:\"url\";s:62:\"https://www.meetup.com/OC-Wordpress-Group/events/znftgqyzpbgb/\";s:6:\"meetup\";s:18:\"OC WordPress Group\";s:10:\"meetup_url\";s:42:\"https://www.meetup.com/OC-Wordpress-Group/\";s:4:\"date\";s:19:\"2019-11-04 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:25:\"Huntington Beach, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:33.737228393555000138803734444081783294677734375;s:9:\"longitude\";d:-118.027603149409998195551452226936817169189453125;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:37:\"#IEWP Monthly Meetup (General Meetup)\";s:3:\"url\";s:58:\"https://www.meetup.com/inlandempirewp/events/jpmnspyzpbhb/\";s:6:\"meetup\";s:36:\"Inland Empire WordPress Meetup Group\";s:10:\"meetup_url\";s:38:\"https://www.meetup.com/inlandempirewp/\";s:4:\"date\";s:19:\"2019-11-05 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Riverside, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:33.9788436889650000694018672220408916473388671875;s:9:\"longitude\";d:-117.37307739258000083282240666449069976806640625;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:30:\"WhittierWP - Accessibility Day\";s:3:\"url\";s:54:\"https://www.meetup.com/whittierwp/events/zrlwjryzpbjb/\";s:6:\"meetup\";s:18:\"Whittier WordPress\";s:10:\"meetup_url\";s:34:\"https://www.meetup.com/whittierwp/\";s:4:\"date\";s:19:\"2019-11-06 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Whittier, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:33.9599914550779971023075631819665431976318359375;s:9:\"longitude\";d:-118.0514907836899993753831950016319751739501953125;}}i:3;a:7:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:18:\"WordCamp Riverside\";s:3:\"url\";s:36:\"https://2019.riverside.wordcamp.org/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2019-11-08 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:13:\"Riverside, CA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.97375939999999872043190407566726207733154296875;s:9:\"longitude\";d:-117.3698184999999938327164272777736186981201171875;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:42:\"[Long Beach] WordPress News + Site Reviews\";s:3:\"url\";s:56:\"https://www.meetup.com/LosAngelesWP/events/kxzwsqyzpbqb/\";s:6:\"meetup\";s:21:\"Los Angeles WordPress\";s:10:\"meetup_url\";s:36:\"https://www.meetup.com/LosAngelesWP/\";s:4:\"date\";s:19:\"2019-11-12 18:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:19:\"Long Beach, CA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:33.82724380493200300179523765109479427337646484375;s:9:\"longitude\";d:-118.147338867190001110429875552654266357421875;}}}}','no'),(188025,'_transient_timeout_wc_customer_bought_product_b17845c2cc17e6dd8706da36e0d375e9','1573291844','no'),(188026,'_transient_wc_customer_bought_product_b17845c2cc17e6dd8706da36e0d375e9','a:2:{s:7:\"version\";s:10:\"1570039467\";s:5:\"value\";a:0:{}}','no'),(191575,'_transient_timeout_wc_customer_bought_product_94a7837efdaaeccf2222008ae6bad4f3','1573889212','no'),(191576,'_transient_wc_customer_bought_product_94a7837efdaaeccf2222008ae6bad4f3','a:2:{s:7:\"version\";s:10:\"1570806892\";s:5:\"value\";a:0:{}}','no'),(188102,'_transient_timeout_wc_customer_bought_product_9769380d025c82d416494675eab8ed4f','1573300512','no'),(188103,'_transient_wc_customer_bought_product_9769380d025c82d416494675eab8ed4f','a:2:{s:7:\"version\";s:10:\"1570039467\";s:5:\"value\";a:0:{}}','no'),(199807,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1572931154','no'),(199808,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1572887954','no'),(199809,'_transient_timeout_feed_7f5e1782736d3f328734444c0ca8a918','1572931154','no'),(199810,'_transient_feed_7f5e1782736d3f328734444c0ca8a918','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:28:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"WPBeginner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://www.wpbeginner.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Beginner\'s Guide for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Nov 2019 11:47:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=4.9.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:3:{i:0;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"7 Best Video Hosting Sites for Bloggers, Marketers, and Businesses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://www.wpbeginner.com/showcase/best-video-hosting-sites-for-bloggers-marketers-and-businesses/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://www.wpbeginner.com/showcase/best-video-hosting-sites-for-bloggers-marketers-and-businesses/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Nov 2019 11:47:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:8:\"Showcase\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:24:\"best video hosting sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:37:\"best video hosting sites for bloggers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:13:\"video hosting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:32:\"video hosting sites for business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:7:\"youtube\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://www.wpbeginner.com/?p=65744\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:743:\"<p>Are you looking for the best video hosting sites for bloggers, marketers, and business websites? Uploading videos directly to your website requires a lot of server resources. This is why smart business owners use video hosting sites to upload videos and then easily embed those&#8230;&#160;<strong><a href=\"https://www.wpbeginner.com/showcase/best-video-hosting-sites-for-bloggers-marketers-and-businesses/\">Read More &#187;</a></strong></p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/showcase/best-video-hosting-sites-for-bloggers-marketers-and-businesses/\">7 Best Video Hosting Sites for Bloggers, Marketers, and Businesses</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Editorial Staff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:13262:\"<p>Are you looking for the best video hosting sites for bloggers, marketers, and <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-make-a-small-business-website-step-by-step/\" title=\"How to Make a Small Business Website – Step by Step (2019)\">business websites</a>? </p>\n<p>Uploading videos directly to your website requires a lot of server resources. This is why smart business owners use video hosting sites to upload videos and then easily embed those videos in WordPress without affecting performance. </p>\n<p>In this article, we will share some of the best video hosting sites for bloggers, marketers, and business owners.</p>\n<p><img title=\"Best video hosting sites for bloggers\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/07/videohostingsites.png\" alt=\"Best video hosting sites for bloggers\" width=\"550\" height=\"344\" class=\"alignnone size-full wp-image-65852\" /></p>\n<h4>Why Use Video Hosting Sites?</h4>\n<p>Videos are the most engaging form of content, and they are highly effective for conversions. However, they also take a lot of space and bandwidth. </p>\n<p>WordPress allows you to upload videos to your website. However, it is not really optimized to serve videos. This affects video playback and creates a bad user experience. </p>\n<p>Apart from that, videos consume more <a href=\"https://www.wpbeginner.com/wordpress-hosting/\" title=\"How to Choose the Best WordPress Hosting in 2019 (Compared)\">WordPress hosting</a> resources, which slows down your website. If you are on <a href=\"https://www.wpbeginner.com/the-truth-about-shared-wordpress-web-hosting/\" title=\"The Truth About Best Shared WordPress Web Hosting\">shared hosting</a>, then your hosting provider may even terminate your account to stop it from affecting other sites.</p>\n<p>Due to these issues, we recommend using a video hosting site to add videos in WordPress. They have more server resources to serve video files, and you don&#8217;t have to worry about WordPress performance. </p>\n<p>More importantly, they automatically adjust video quality to provide a better viewing experience based on your visitors&#8217; internet speed. </p>\n<p>To learn more, see our guide on why you should <a href=\"https://www.wpbeginner.com/beginners-guide/why-you-should-never-upload-a-video-to-wordpress/\" title=\"Why You Should Never Upload a Video to WordPress\">never upload videos to WordPress</a>.   </p>\n<p>WordPress makes it super easy to embed videos on your website. See our guide on  <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-easily-embed-videos-in-wordpress-blog-posts/\" title=\"How to Easily Embed Videos in WordPress Blog Posts\">how to easily embed videos in WordPress</a> for detailed instructions.</p>\n<p>That being said, let&#8217;s take a look at some of the best video hosting sites that you can use. </p>\n<h4><a href=\"https://www.youtube.com/\" title=\"YouTube\" rel=\"noopener nofollow\" target=\"_blank\">1. YouTube</a></h4>\n<p><a href=\"https://www.youtube.com/\" title=\"YouTube\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"YouTube\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/07/youtube.png\" alt=\"YouTube\" width=\"550\" height=\"344\" class=\"alignnone size-full wp-image-65823\" /></a></p>\n<p>YouTube is the most popular video hosting website on the internet. It allows you to upload videos, create channels, and build a following. </p>\n<p>As a marketer and business owner, you would want to capitalize on YouTube&#8217;s huge potential. It is also the world&#8217;s second most popular search engine and the second biggest social media website with 1.9 billion active users. </p>\n<p>You can build a YouTube following with your channel, find a new audience, get featured in video search results, and grow your business. </p>\n<p>YouTube has a Partners Program that you can join to earn money online from your videos. This program also offers you more benefits like analytics, longer videos, and video editing tools. </p>\n<p>At WPBeginner we use YouTube to upload our WordPress video tutorials. Check out <a href=\"http://youtube.com/wpbeginner?sub_confirmation=1\" title=\"WPBeginner on YouTube\" target=\"_blank\" rel=\"nofollow\">WPBeginner channel on YouTube</a> to see how we use YouTube to get more subscribers and visitors to our website. </p>\n<h4><a href=\"https://www.wpbeginner.com/refer/vimeo/\" title=\"Vimeo\" rel=\"noopener nofollow\" target=\"_blank\">2. Vimeo</a></h4>\n<p><a href=\"https://www.wpbeginner.com/refer/vimeo/\" title=\"Vimeo\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Vimeo\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/07/vimeo.png\" alt=\"Vimeo\" width=\"550\" height=\"344\" class=\"alignnone size-full wp-image-65817\" /></a></p>\n<p><a href=\"https://www.wpbeginner.com/refer/vimeo/\" title=\"Vimeo\" rel=\"noopener nofollow\" target=\"_blank\">Vimeo</a> is an excellent video hosting and streaming site for bloggers, marketers, and businesses. It gives you a limited hosting space to upload videos for free. However, the unlimited bandwidth and ad-free display are the key perks for all the videos.</p>\n<p>To upload large videos, you&#8217;ll need to buy a premium plan which is very affordable ($84 per year). The paid plans also include privacy options, video editing tools, customer support, password protection, related videos, and Google Analytics. </p>\n<p>The premium members can also sell or rent videos to earn money online from your Vimeo video. </p>\n<p>We use Vimeo to host private videos for our exclusive members only area. If you have a <a href=\"https://www.wpbeginner.com/wp-tutorials/ultimate-guide-to-creating-a-wordpress-membership-site/\" title=\"Ultimate Guide to Creating a WordPress Membership Site\">membership site</a> or you want to <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-create-online-course-in-wordpress/\" title=\"How to Create an Online Course with WordPress (the RIGHT WAY)\">create and sell online courses</a>, then <a rel=\"nofollow noopener\" target=\"_blank\" title=\"Vimeo\" href=\"https://www.wpbeginner.com/refer/vimeo/\" data-shortcode=\"true\">Vimeo</a> is an excellent option.</p>\n<h4><a href=\"https://www.wpbeginner.com/refer/jetpack/\" title=\"Jetpack Video\" rel=\"noopener nofollow\" target=\"_blank\">3. Jetpack Video</a></h4>\n<p><a href=\"https://www.wpbeginner.com/refer/jetpack/\" title=\"Jetpack Video\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Jetpack Video\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/07/jetpack-video.jpg\" alt=\"Jetpack Video\" width=\"550\" height=\"344\" class=\"alignnone size-full wp-image-65818\" /></a></p>\n<p>Jetpack is a popular plugin suite which also includes a video hosting feature. Jetpack video is a premium video hosting service and requires a paid Jetpack subscription plan. </p>\n<p>It is completely ad-free and does not show related videos from other websites on your videos. </p>\n<p>It uses the same content delivery network used by Jetpack photos for faster delivery and streaming experience. It also includes privacy settings, analytics, multiple video formats, and more. </p>\n<h4><a href=\"http://www.wistia.com/\" title=\"Wistia\" rel=\"noopener nofollow\" target=\"_blank\">4. Wistia</a></h4>\n<p><a href=\"http://www.wistia.com/\" title=\"Wistia\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Wistia\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/07/wistia.png\" alt=\"Wistia\" width=\"550\" height=\"344\" class=\"alignnone size-full wp-image-65819\" /></a></p>\n<p>Wistia is a professional video hosting site for marketers and businesses. The free account has a limit of 3 videos with features like custom thumbnail, Wistia branded video player, password protection, privacy settings, and more.</p>\n<p>You&#8217;ll need their premium plan to upload more videos. The paid version allows you to remove Wistia&#8217;s branding from the video player. It also comes with viewer history, trend graphs, call-to-action buttons, related videos, and annotations.</p>\n<p>It has powerful integrations with <a href=\"https://www.wpbeginner.com/showcase/best-email-marketing-services/\" title=\"7 Best Email Marketing Services for Small Business (2019)\">email marketing services</a> and <a href=\"https://www.wpbeginner.com/showcase/best-crm-software-for-small-businesses-compared/\" title=\"7 Best CRMs for Small Businesses in 2019 (with Free Options)\">CRM software</a> like <a title=\"Constant Contact\" href=\"https://www.wpbeginner.com/refer/constant-contact/\" rel=\"nofollow noopener\" target=\"_blank\" >Constant Contact</a>, <a title=\"Drip\" href=\"https://www.wpbeginner.com/refer/drip/\" rel=\"nofollow noopener\" target=\"_blank\" >Drip</a>, <a title=\"Aweber\" href=\"https://www.wpbeginner.com/refer/aweber/\" rel=\"nofollow noopener\" target=\"_blank\" >AWeber</a>, Hubspot, Google Analytics, and others. </p>\n<h4><a href=\"https://www.vidyard.com/\" title=\"Vidyard\" rel=\"noopener nofollow\" target=\"_blank\">5. Vidyard</a></h4>\n<p><a href=\"https://www.vidyard.com/\" title=\"Vidyard\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Vidyard\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/07/vidyard.png\" alt=\"Vidyard\" width=\"550\" height=\"344\" class=\"alignnone size-full wp-image-65820\" /></a></p>\n<p>Vidyard is a high-end video hosting site for large businesses and professionals. It includes premium <a href=\"https://www.wpbeginner.com/showcase/best-wordpress-plugins-tools-to-create-killer-content/\" title=\"13 Best Content Marketing Tools and Plugins for WordPress (Expert Pick)\">content marketing tools</a> to promote your videos.</p>\n<p>It comes with multiple video player styles and custom editing options. You can upload videos with call-to-action buttons, and perform A/B test against video thumbnails to see which one works best. </p>\n<p>Vidyard offers powerful and detailed analytics, including viewer history, engagement, and more to improve your videos.</p>\n<h4><a href=\"https://www.dailymotion.com/\" title=\"Dailymotion\" rel=\"noopener nofollow\" target=\"_blank\">6. Dailymotion</a></h4>\n<p><a href=\"https://www.dailymotion.com/\" title=\"Dailymotion\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"Dailymotion\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/07/dailymotion.jpg\" alt=\"Dailymotion\" width=\"550\" height=\"344\" class=\"alignnone size-full wp-image-65821\" /></a></p>\n<p>Dailymotion is another popular video hosting site that you can use to upload your marketing and business videos. It has a free partner account with features like unlimited bandwidth and storage, featured videos, privacy settings, video player, and more.</p>\n<p>It allows you to upload several videos in a day and you can also use the drag and drop feature to upload complete playlists. You can optimize your videos for SEO by adding title, description, and tags.</p>\n<p>DailyMotion also offers a monetization program where you can earn money and get more features as a partner. </p>\n<h4><a href=\"https://sproutvideo.com/\" title=\"SproutVideo\" rel=\"noopener nofollow\" target=\"_blank\">7. SproutVideo</a></h4>\n<p><a href=\"https://sproutvideo.com/\" title=\"SproutVideo\" rel=\"noopener nofollow\" target=\"_blank\"><img title=\"SproutVideo\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/07/sproutvideo.jpg\" alt=\"SproutVideo\" width=\"550\" height=\"344\" class=\"alignnone size-full wp-image-65822\" /></a></p>\n<p>SproutVideo is a paid video hosting site for bloggers, marketers, and businesses. It has a free trial account where you can test the video player and its features. Though the free version has limited options and you&#8217;ll need to upgrade to access all the settings.</p>\n<p>Some of the notable features include video themes, layouts, video analytics, <a href=\"https://www.wpbeginner.com/plugins/best-social-media-plugins-for-wordpress/\" title=\"10 Best Social Media Plugins for WordPress\">social sharing buttons</a>, call-to-action placement, and viewer engagement history.</p>\n<p>You will need to get the embed code for each video and use the Custom HTML block to add video code.</p>\n<p>We hope this article helped you find the best video hosting sites for your blog or business website. You may also want to see our step by step <a href=\"https://www.wpbeginner.com/wordpress-seo/\" title=\"Ultimate WordPress SEO Guide for Beginners (Step by Step)\">WordPress SEO guide for beginners</a>, and our expert pick of the <a href=\"https://www.wpbeginner.com/showcase/24-must-have-wordpress-plugins-for-business-websites/\" title=\"24 Must Have WordPress Plugins for Business Websites in 2019\">best WordPress plugins for business websites</a>. </p>\n<p>If you liked this article, then please subscribe to our <a href=\"http://youtube.com/wpbeginner?sub_confirmation=1\" title=\"WPBeginner on YouTube\" target=\"_blank\" rel=\"nofollow\">YouTube Channel</a> for WordPress video tutorials. You can also find us on <a href=\"http://twitter.com/wpbeginner\" title=\"WPBeginner on Twitter\" target=\"_blank\" rel=\"nofollow\">Twitter</a> and <a href=\"https://www.facebook.com/wpbeginner\" title=\"WPBeginner on Facebook\" target=\"_blank\" rel=\"nofollow\">Facebook</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/showcase/best-video-hosting-sites-for-bloggers-marketers-and-businesses/\">7 Best Video Hosting Sites for Bloggers, Marketers, and Businesses</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://www.wpbeginner.com/showcase/best-video-hosting-sites-for-bloggers-marketers-and-businesses/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"How to Find and Fix Broken Links in WordPress (Step by Step)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://www.wpbeginner.com/plugins/how-to-fix-broken-links-in-wordpress-with-broken-link-checker/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://www.wpbeginner.com/plugins/how-to-fix-broken-links-in-wordpress-with-broken-link-checker/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 31 Oct 2019 10:30:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"broken links seo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:30:\"find broken links in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:29:\"fix broken links in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://www.wpbeginner.com/?p=15044\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:741:\"<p>Everyone agrees that broken links are bad for user experience. But did you know that broken links can significantly hurt your WordPress SEO rankings? Yes, it&#8217;s proven that having broken internal links on your website negatively impacts SEO rankings. In this article, we will show&#8230;&#160;<strong><a href=\"https://www.wpbeginner.com/plugins/how-to-fix-broken-links-in-wordpress-with-broken-link-checker/\">Read More &#187;</a></strong></p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/plugins/how-to-fix-broken-links-in-wordpress-with-broken-link-checker/\">How to Find and Fix Broken Links in WordPress (Step by Step)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Editorial Staff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15285:\"<p>Everyone agrees that broken links are bad for user experience. But did you know that broken links can significantly hurt your <a href=\"https://www.wpbeginner.com/wordpress-seo/\" title=\"Ultimate WordPress SEO Guide for Beginners (Step by Step)\">WordPress SEO</a> rankings?</p>\n<p>Yes, it&#8217;s proven that having broken internal links on your website negatively impacts SEO rankings.  </p>\n<p>In this article, we will show you how to easily find and fix broken links in WordPress, so you can improve your user experience and SEO rankings.</p>\n<p><img title=\"Finding and fixing broken links in WordPress\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/10/fixbrokenlinkswp.png\" alt=\"Finding and fixing broken links in WordPress\" width=\"550\" height=\"340\" class=\"alignnone size-full wp-image-69096\" /></p>\n<h4>What is a Broken Link?</h4>\n<p>A broken link, also known as dead link, is a link that no longer works. Broken links can happen for many reasons, but the most common reason is when a page is either deleted or moved to a different location which causes the server to show a 404 not found error.</p>\n<p>On WordPress sites, broken links typically occur when <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-properly-move-wordpress-to-a-new-domain-without-losing-seo/\" title=\"How to Properly Move WordPress to a New Domain Without Losing SEO\">moving a site to new domain name</a>, or when deleting a post or page without proper redirection.</p>\n<p>Sometimes broken links can also happen due to a typo, and they can go unnoticed for months if not years. </p>\n<p>This is why it&#8217;s extremely important to regularly monitor broken links on your site and fix them, so you can keep them from hurting your SEO rankings.</p>\n<p>In this guide, we will share top four methods to find broken links in WordPress. After that, we will show you an easy way to fix those broken links.</p>\n<p>Here&#8217;s a table of content for easy navigation:</p>\n<ul>\n<li><a href=\"#brokenlinks-semrush\">Finding Broken Links using SEMRush</a></li>\n<li><a href=\"#brokenlinks-ahrefs\">Finding Broken Links using Ahrefs</a></li>\n<li><a href=\"#brokenlinks-gsc\">Finding Broken Links using Google Search Console</a></li>\n<li><a href=\"#brokenlinks-linkchecker\">Finding Broken Links using Broken Link Checker Plugin</a></li>\n<li><a href=\"#brokenlinks-fixit\">How to Fix Broken Links in WordPress</a></li>\n</ul>\n<p>Ready? Let&#8217;s get started. </p>\n<h4 id=\"brokenlinks-semrush\">Method 1. Finding Broken Links using SEMRush</h4>\n<p><a title=\"SEMRush\" href=\"https://www.wpbeginner.com/refer/semrush/\" rel=\"nofollow noopener\" target=\"_blank\">SEMRush</a> is one of the <a href=\"https://www.wpbeginner.com/showcase/9-best-wordpress-seo-plugins-and-tools-that-you-should-use/\" title=\"14 Best WordPress SEO Plugins and Tools That You Should Use\">best SEO tool</a> on the market. It allows you to easily monitor your website&#8217;s <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-check-if-your-wordpress-blog-posts-are-ranking-for-the-right-keywords/\" title=\"How to Check If Your WordPress Blog Posts Are Ranking for the Right Keywords\">SEO rankings</a> and overall health. </p>\n<p>It also includes a powerful site audit tool that crawls your website to find common errors and prepare a detailed report for you. </p>\n<p>First, you&#8217;ll need to sign up for a <a title=\"SEMRush\" href=\"https://www.wpbeginner.com/refer/semrush/\" rel=\"nofollow noopener\" target=\"_blank\">SEMRush account</a>. </p>\n<p>It is a paid service, but they do offer a limited free account which allows you to crawl up to 100 pages on one domain name. Paid plan limits start from 100,000 pages a month. </p>\n<p>Once you are logged in, you need to click on the &#8216;Site Audit&#8217; link from the left menu. </p>\n<p>This will bring you to the Site Audit page. From here, click on the &#8216;New Site Audit&#8217; button at the top to add your website. </p>\n<p><img title=\"Adding a new site audit in SEMRush\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/10/newsiteaudit.jpg\" alt=\"Adding a new site audit in SEMRush\" width=\"550\" height=\"280\" class=\"alignnone size-full wp-image-69085\" /></p>\n<p>You will be asked to enter your domain name. After that, you will be asked to configure site audit settings. You can select the number of pages to crawl and choose a crawl source. </p>\n<p><img title=\"Site Audit settings\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/10/siteaudit-settings.jpg\" alt=\"Site Audit settings\" width=\"550\" height=\"251\" class=\"alignnone size-full wp-image-69086\" /></p>\n<p>Click on the start crawling button to continue. </p>\n<p>SEMRush will now begin crawling your website for the site audit. This may take a few minutes depending on how many pages you selected for the crawl. </p>\n<p>Once finished, you can click on your domain Under the Site Audit section to view your report. </p>\n<p><img title=\"SEMRush broken links\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/10/semrushbrokenlinks.jpg\" alt=\"SEMRush broken links\" width=\"550\" height=\"327\" class=\"alignnone size-full wp-image-69087\" /></p>\n<p>To see the broken links on your site, you will need to click on the &#8216;Broken&#8217; link under the report overview. </p>\n<p><img title=\"Broken links report in SEMRush\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/10/brokenlinksreport.jpg\" alt=\"Broken links report in SEMRush\" width=\"550\" height=\"270\" class=\"alignnone size-full wp-image-69088\" /></p>\n<p>You can now click on the Export button at the top right corner of the screen to download your crawl report. You will need it when fixing broken links on your website (more on this later in the article). </p>\n<h4 id=\"brokenlinks-ahrefs\">Method 2. Finding Broken Links using Ahrefs</h4>\n<p><a title=\"Ahrefs\" href=\"https://www.wpbeginner.com/refer/ahrefs/\" rel=\"nofollow noopener\" target=\"_blank\">Ahrefs</a> is an excellent all-in-one SEO tool for marketers, businesses, and SEO professionals. It offers detailed SEO insights into your own website or any of your competitors. </p>\n<p>You can use it for keyword research, competition analysis, organic and paid keyword ideas, and site health monitoring including broken links. </p>\n<p>First, you&#8217;ll need to sign up for an <a title=\"Ahrefs\" href=\"https://www.wpbeginner.com/refer/ahrefs/\" rel=\"nofollow noopener\" target=\"_blank\">Ahrefs account</a>. It is a paid service with plans starting from $99 per month. They also  offer a full featured 7 day trial for $7.</p>\n<p>Once you are logged into your Ahref&#8217;s dashboard, you need to enter your domain name under the Site Explorer tool. </p>\n<p><img title=\"siteexplorer\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/10/siteexplorer.jpg\" alt=\"Ahrefs site explorer tool\" width=\"550\" height=\"273\" class=\"alignnone size-full wp-image-69089\" /></p>\n<p>Site explorer tool will now crawl your website to prepare reports. This may take some time depending on how much content you have on your website. </p>\n<p>Once finished, you&#8217;ll see an overview of your site explorer results. From here, you need to click on the <strong>Pages &raquo; Best by Links</strong> menu and then sort your report by 404 status. </p>\n<p><img title=\"Broken links\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/10/brokenlinks.jpg\" alt=\"Broken links\" width=\"550\" height=\"406\" class=\"alignnone size-full wp-image-69090\" /></p>\n<p>You can now export your report in CSV format to fix the broken links on your WordPress site.</p>\n<h4 id=\"brokenlinks-gsc\">Method 3. Finding Broken Links in WordPress using Google Search Console</h4>\n<p>Google Search Console is a free tool offered by Google to help webmasters manage their site&#8217;s visibility in search results. It also notifies you about errors including 404 errors which are caused by a broken link. </p>\n<p>For more details, see our ultimate <a href=\"https://www.wpbeginner.com/beginners-guide/google-search-console-ultimate-guide/\" title=\"15 Tips for Using Google Search Console to Effectively Grow Your Website Traffic\">Google Search Console guide</a> with step by step set up instructions. </p>\n<p>After you have logged in to your <a href=\"https://search.google.com/search-console/about\" title=\"Google Search Console\" rel=\"noopener nofollow\" target=\"_blank\">Google Search Console</a> account, click on the &#8216;Coverage&#8217; link from the left menu. </p>\n<p><img title=\"Google Search index coverage report\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/10/coverage-gsc.png\" alt=\"Google Search index coverage report\" width=\"550\" height=\"294\" class=\"alignnone size-full wp-image-69091\" /></p>\n<p>You&#8217;ll find 404 errors either under Errors or Excluded tabs. Clicking on them will show you a list of errors or issues Google encountered while visiting your website. </p>\n<p><img title=\"Excluded broken links\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2019/10/excluded-broken-links.png\" alt=\"Excluded broken links\" width=\"550\" height=\"344\" class=\"alignnone size-full wp-image-69092\" /></p>\n<p>Clicking on the 404 error will show you all the links on your website that are broken links and return a 404 error. </p>\n<p>You can now click on the download button to get the list of all 404 errors on your website. You&#8217;ll need this to fix broken links on your website.</p>\n<h4 id=\"brokenlinks-linkchecker\">Method 4. Finding Broken Links in WordPress using Broken Link Checker</h4>\n<p>For this method, we&#8217;ll be using the Broken Link Checker plugin. However, this method is not recommended because it is resource-intensive and will slow down your website. <a href=\"https://www.wpbeginner.com/managed-wordpress-hosting/\" title=\"When Do You Really Need Managed WordPress Hosting? Best Managed WordPress Hosting Compared (2019)\">Managed WordPress hosting</a> companies like <a title=\"WPEngine\" href=\"https://www.wpbeginner.com/refer/wpengine/\" rel=\"nofollow noopener\" target=\"_blank\">WP Engine</a> already block users from installing this plugin on their servers. </p>\n<p>The plugin checks for broken links on your website including both internal and external links that are resulting in a 404 error.</p>\n<p>First, you&#8217;ll need to install and activate the <a href=\"https://wordpress.org/plugins/broken-link-checker/\" title=\"Broken Link Checker\" rel=\"noopener nofollow\" target=\"_blank\">Broken Link Checker</a> plugin. For more details, see our step by step guide on <a href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" title=\"Step by Step Guide to Install a WordPress Plugin for Beginners\">how to install a WordPress plugin</a>.</p>\n<p>Upon activation, the plugin will start working in the background to find links in your posts, pages, and comments. You can now go to <strong>Tools &raquo; Broken Links</strong> page to view the full report. </p>\n<p><img title=\"Broken Links Report in WordPress\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/10/brokenlinksreport-wp.png\" alt=\"Broken Links Report in WordPress\" width=\"550\" height=\"277\" class=\"alignnone size-full wp-image-69093\" /></p>\n<p>If you have been running your <a href=\"https://www.wpbeginner.com/start-a-wordpress-blog/\" title=\"How to Start a WordPress Blog the RIGHT WAY in 7 Easy Steps (2019)\">WordPress blog</a> for a long time, then this report will include broken links to third-party websites as well. </p>\n<p>You will have to manually sort the list to find broken links on your website. </p>\n<p>You will need to keep Broken Link Checker active on your website until you fix broken links. After that, you can deactivate the plugin because it will keep checking for broken links which will slow down your server. </p>\n<h4 id=\"brokenlinks-fixit\">How to Properly Fix Broken Links in WordPress</h4>\n<p>We have shown you four different methods to find broken links in WordPress. Now let&#8217;s talk about how to easily fix broken links in WordPress. </p>\n<p>The best way to fix a broken link is to redirect it to another page. For example, if you moved the contents of an article to a different address, then you will need to redirect it to the newer article. </p>\n<p>Similarly, if an article does not exist anymore, then you would want to point users to a similar page that is closely related to the contents of the old article. </p>\n<p>You can do this by setting up 301 redirects. </p>\n<p>First, you will need to install and activate the <a href=\"https://wordpress.org/plugins/redirection/\" title=\"Redirection\" rel=\"noopener nofollow\" target=\"_blank\">Redirection</a> plugin. For more details, see our step by step guide on <a href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" title=\"Step by Step Guide to Install a WordPress Plugin for Beginners\">how to install a WordPress plugin</a>.</p>\n<p>Upon activation, you need to visit <strong>Tools &raquo; Redirection</strong> page to set up redirects. You need to add the old broken link in the &#8216;Source URL&#8217; field and the new URL in the &#8216;Target URL&#8217; field. </p>\n<p><img title=\"Set up redirects for broken links\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/10/setupredirects.png\" alt=\"Set up redirects for broken links\" width=\"550\" height=\"294\" class=\"alignnone size-full wp-image-69094\" /></p>\n<p>After that, click on the &#8216;Add redirect&#8217; button to save your changes. </p>\n<p>You can now test this by visiting the old broken link, and you&#8217;ll be redirected to the new page. </p>\n<p>Repeat the process for all broken links on your website. </p>\n<p>For more information, see our guide on <a href=\"https://www.wpbeginner.com/beginners-guide/beginners-guide-to-creating-redirects-in-wordpress/\" title=\"Beginner’s Guide to Creating 301 Redirects in WordPress (Step by Step)\">how to set up redirects in WordPress</a> for beginners. </p>\n<p>We hope this article helped you learn how to easily find and fix broken links in WordPress. You may also want to see our actionable tips on <a href=\"https://www.wpbeginner.com/beginners-guide/speed-wordpress-save-images-optimized-web/\" title=\"How to Optimize Images for Web Performance without Losing Quality\">how to optimize your images for web</a>, and our pick of the <a href=\"https://www.wpbeginner.com/plugins/5-best-wordpress-membership-plugins-compared/\" title=\"5 Best WordPress Membership Plugins (Compared) – 2019\">best WordPress membership plugins</a> to create a membership site.</p>\n<p>If you liked this article, then please subscribe to our <a href=\"http://youtube.com/wpbeginner?sub_confirmation=1\" title=\"WPBeginner on YouTube\" target=\"_blank\" rel=\"nofollow\">YouTube Channel</a> for WordPress video tutorials. You can also find us on <a href=\"http://twitter.com/wpbeginner\" title=\"WPBeginner on Twitter\" target=\"_blank\" rel=\"nofollow\">Twitter</a> and <a href=\"https://www.facebook.com/wpbeginner\" title=\"WPBeginner on Facebook\" target=\"_blank\" rel=\"nofollow\">Facebook</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/plugins/how-to-fix-broken-links-in-wordpress-with-broken-link-checker/\">How to Find and Fix Broken Links in WordPress (Step by Step)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://www.wpbeginner.com/plugins/how-to-fix-broken-links-in-wordpress-with-broken-link-checker/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"47\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:54:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"How to Stop and Prevent a DDoS Attack on WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://www.wpbeginner.com/wp-tutorials/how-to-stop-and-prevent-a-ddos-attack-on-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://www.wpbeginner.com/wp-tutorials/how-to-stop-and-prevent-a-ddos-attack-on-wordpress/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Oct 2019 07:47:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:9:\"Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"ddos attack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:37:\"how to block ddos attack on wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:25:\"how to stop a ddos attack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:18:\"wordpress security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://www.wpbeginner.com/?p=69031\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:706:\"<p>WordPress is one of the most popular website builder in the world because it offers powerful features and a secure codebase. However, that does not protect WordPress or any other software from malicious DDoS attacks, which are common on the internet. DDoS attacks can slow&#8230;&#160;<strong><a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-stop-and-prevent-a-ddos-attack-on-wordpress/\">Read More &#187;</a></strong></p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/wp-tutorials/how-to-stop-and-prevent-a-ddos-attack-on-wordpress/\">How to Stop and Prevent a DDoS Attack on WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Editorial Staff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:17331:\"<p>WordPress is one of the most <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-choose-the-best-website-builder/\" title=\"How to Choose the Best Website Builder in 2019 (Compared)\">popular website builder</a> in the world because it offers powerful features and a secure codebase. However, that does not protect WordPress or any other software from malicious DDoS attacks, which are common on the internet. </p>\n<p>DDoS attacks can slow down websites and eventually make them inaccessible to users. These attacks can be targeted towards both small and large websites.</p>\n<p>Now, you may be wondering how can a small business website using WordPress prevent such DDoS attacks with limited resources? </p>\n<p>In this guide, we will show you how to effectively stop and prevent a DDoS attack on WordPress. Our goal is to help you learn how to manage your website security against a DDoS attack like a total pro. </p>\n<p><img title=\"Stopping and preventing a DDOS attack on a WordPress site\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/10/stopddosattack.png\" alt=\"Stopping and preventing a DDOS attack on a WordPress site\" width=\"550\" height=\"340\" class=\"alignnone size-full wp-image-69070\" /></p>\n<h4>What is a DDoS Attack?</h4>\n<p>DDoS attack, short for Distributed Denial of Service attack, is a type of cyber attack that uses compromised computers and devices to send or request data from a <a href=\"https://www.wpbeginner.com/wordpress-hosting/\" title=\"How to Choose the Best WordPress Hosting in 2019 (Compared)\">WordPress hosting server</a>. The purpose of these requests is to slow down and eventually crash the targeted server. </p>\n<p>DDoS attacks are an evolved form of DoS (Denial of Service) attacks. Unlike a DoS attack, they take advantage of multiple compromised machines or servers spread across different regions. </p>\n<p>These compromised machines form a network, which is sometimes called a botnet. Each affected machine acts as a bot and launches attacks on the targeted system or server. </p>\n<p>This allows them to go unnoticed for a while and cause maximum damage before they are being blocked. </p>\n<p><img title=\"DDoS attack diagram\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/10/ddosattack.png\" alt=\"DDoS attack diagram\" width=\"550\" height=\"350\" class=\"alignnone size-full wp-image-69036\" /></p>\n<p>Even the largest internet companies are vulnerable to DDoS attacks. </p>\n<p>In 2018, GitHub, a popular code hosting platform, witnessed a massive DDoS attack that sent 1.3 terabytes per second traffic to their servers. </p>\n<p>You may also remember the notorious 2016 attack on DYN (a DNS service provider). This attack got worldwide news coverage as it affected many popular websites like Amazon, Netflix, PayPal, Visa, AirBnB, The New York Times, Reddit, and thousands of other websites. </p>\n<p><strong>Why DDoS Attacks Happen?</strong> </p>\n<p>There are several motivations behind DDoS attacks. Below are some common ones:</p>\n<ul>\n<li>Technically savvy people who are just bored and find it adventurous</li>\n<li>People and groups trying to make a political point</li>\n<li>Groups targeting websites and services of a particular country or region</li>\n<li>Targeted attacks on a specific business or service provider to cause them monetary harm</li>\n<li>To blackmail and collect ransom money</li>\n</ul>\n<p><strong>What is the difference between a Brute Force Attack and a DDoS Attack?</strong> </p>\n<p><img title=\"Brute force attack\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/10/bruteforceattack.png\" alt=\"Brute force attack\" width=\"550\" height=\"300\" class=\"alignnone size-full wp-image-69066\" /></p>\n<p>Brute Force Attacks are usually trying to break into a system by guessing passwords or trying random combinations to gain unauthorized access to a system. </p>\n<p>DDoS attacks are purely used to simply crash the targetted system making it inaccessible or slowing it down. </p>\n<p>For details see our guide on how to <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-protect-your-wordpress-site-from-brute-force-attacks-step-by-step/\" title=\"How to Protect Your WordPress Site from Brute Force Attacks (Step by Step)\">block brute force attacks on WordPress</a> with step by step instructions. </p>\n<p><strong>What damages can be caused by a DDoS attack?</strong> </p>\n<p>DDoS attacks can make a website inaccessible or reduce performance. This may cause bad user experience, loss of business, and the costs of mitigating the attack can be in thousands of dollars. </p>\n<p>Here is a breakdown of these costs: </p>\n<ul>\n<li>Loss of business due to inaccessibility of website</li>\n<li>Cost of customer support to answer service disruption related queries</li>\n<li>Cost of mitigating attack by hiring security services or support</li>\n<li>The biggest cost is the bad user experience and brand reputation</li>\n</ul>\n<h4>How to Stop and Prevent DDoS Attack on WordPress</h4>\n<p>DDoS attacks can be cleverly disguised and difficult to deal with. However, with some basic security best practices, you can prevent and easily stop DDoS attacks from affecting your WordPress website. </p>\n<p>Here are the steps you need to take to prevent and stop DDoS attacks on your WordPress site. </p>\n<h4>Remove DDoS / Brute Force Attack Verticals</h4>\n<p>The best thing about WordPress is that it is highly flexible. WordPress allows third-party <a href=\"https://www.wpbeginner.com/showcase/24-must-have-wordpress-plugins-for-business-websites/\" title=\"24 Must Have WordPress Plugins for Business Websites in 2019\">plugins and tools</a> to integrate into your website and add new features. </p>\n<p>To do that WordPress makes several APIs available to programmers. These APIs are methods in which third-party WordPress plugins and services can interact with WordPress. </p>\n<p>However, some of these APIs can also be exploited during a DDoS attack by sending a ton of requests. You can safely disable them to reduce those requests. </p>\n<p><strong>Disable XML RPC in WordPress</strong> </p>\n<p>XML-RPC allows third-party apps to interact with your WordPress website. For example, you need XML-RPC to use the <a href=\"https://www.wpbeginner.com/wp-tutorials/use-wordpress-app-iphone-ipad/\" title=\"How to use WordPress App on your iPhone, iPad, and Android (Guide)\">WordPress app</a> on your mobile device. </p>\n<p>If you&#8217;re like a vast majority of users who don&#8217;t use the mobile app, then you can disable XML-RPC by simply adding the following code to your website&#8217;s <a href=\"https://www.wpbeginner.com/wp-tutorials/9-most-useful-htaccess-tricks-for-wordpress/\" title=\"12 Most Useful .htaccess Tricks for WordPress\">.htaccess file</a>. </p>\n<pre class=\"brush: php; title: ; notranslate\">\r\n# Block WordPress xmlrpc.php requests\r\n&lt;Files xmlrpc.php&gt;\r\norder deny,allow\r\ndeny from all\r\n&lt;/Files&gt;\r\n</pre>\n<p>For alternate methods, see our guide on how to easily <a href=\"https://www.wpbeginner.com/plugins/how-to-disable-xml-rpc-in-wordpress/\" title=\"Disable XML-RPC\">disable XML-RPC in WordPress</a>. </p>\n<p><strong>Disable REST API in WordPress</strong> </p>\n<p>The WordPress JSON REST API allow plugins and tools the ability to access WordPress data, update content, and/or even delete it. Here is how you can disable REST API in WordPress. </p>\n<p>First thing you need to do is install and activate the <a href=\"https://wordpress.org/plugins/disable-wp-rest-api/\" title=\"Disable WP Rest API\" rel=\"noopener nofollow\" target=\"_blank\">Disable WP Rest API</a> plugin. For more details, see our step by step guide on <a href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" title=\"Step by Step Guide to Install a WordPress Plugin for Beginners\">how to install a WordPress plugin</a>.</p>\n<p>The plugin works out of the box, and it will simply <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-disable-json-rest-api-in-wordpress/\" title=\"How to Disable JSON REST API in WordPress\">disable the REST API</a> for all non-logged in users. </p>\n<h4>Activate WAF (Website Application Firewall)</h4>\n<p><img title=\"Website Application Firewall (WAF)\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/10/waf.png\" alt=\"Website Application Firewall (WAF)\" width=\"550\" height=\"300\" class=\"alignnone size-full wp-image-69068\" /></p>\n<p>Disabling attack vectors like REST API and XML-RPC provides limited protection against DDoS attacks. Your website is still vulnerable to normal HTTP requests. </p>\n<p>While you can mitigate a small DOS attack by trying to catch the bad machine IPs and blocking them manually, this approach is not very effective when dealing with a large DDoS attack.</p>\n<p>The easiest way to block suspicious requests is by activating a <a href=\"https://www.wpbeginner.com/plugins/best-wordpress-firewall-plugins-compared/\" title=\"6 Best WordPress Firewall Plugins Compared\">website application firewall</a>. </p>\n<p>A website application firewall acts as a proxy between your website and all incoming traffic. It uses smart algorithm to catch all suspicious requests and block them before they reach your website server. </p>\n<p><img title=\"Website application firewall\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/10/sucuriwaf.png\" alt=\"Website application firewall\" width=\"550\" height=\"291\" class=\"alignnone size-full wp-image-69064\" /></p>\n<p>We recommend using <a title=\"Sucuri\" href=\"https://www.wpbeginner.com/refer/sucuri/\" rel=\"nofollow noopener\" target=\"_blank\">Sucuri</a> because it is the <a href=\"https://www.wpbeginner.com/plugins/best-wordpress-security-plugins-compared/\" title=\"6 Best WordPress Security Plugins to Protect Your Site (Compared)\">best WordPress security plugin</a> and website firewall. It runs on a DNS level which means they can catch a DDoS attack before it can make a request to your website. </p>\n<p>Pricing for Sucuri starts from $20 per month (paid yearly). </p>\n<p>We use Sucuri on WPBeginner. See <a href=\"https://www.wpbeginner.com/opinion/sucuri-review-how-sucuri-helped-us-block-450000-wordpress-attacks-in-3-months/\" title=\"Sucuri Review – How Sucuri Helped us Block 450,000 WordPress Attacks in 3 Months\">our case study</a> on how they help block hundreds of thousands of attacks on our website.</p>\n<p>Alternately, you can also use <a href=\"https://cloudflare.com\" title=\"Cloudflare\" rel=\"noopener nofollow\" target=\"_blank\">Cloudflare</a>. However, Cloudflare&#8217;s free service only gives limited DDoS protection. You&#8217;ll need to signup for at least their business plan for layer 7 DDoS protection which costs around $200 per month. </p>\n<p>See our article on <a href=\"https://www.wpbeginner.com/opinion/sucuri-vs-cloudflare-pros-and-cons-which-one-is-better/\" title=\"Sucuri vs CloudFlare (Pros and Cons) – Which One is Better?\">Sucuri vs Cloudflare</a> for a detailed side-by-side comparison. </p>\n<p><strong>Note:</strong> Website Application Firewalls (WAFs) that run on an application-level are less effective during a DDoS attack. They block the traffic once it has already reached your web server, so it still affects your overall website performance. </p>\n<h4>Finding Out Whether it&#8217;s Brute Force or DDoS Attack</h4>\n<p>Both brute force and DDoS attacks intensively use server resources, which means their symptoms look quite similar. Your website will get slower and may crash. </p>\n<p>You can easily find out whether it is a brute force attack or a DDoS attack by simply looking at Sucuri plugin&#8217;s login reports. </p>\n<p>Simply, install and activate the free <a href=\"https://wordpress.org/plugins/sucuri-scanner/\" title=\"Sucuri\" rel=\"noopener nofollow\" target=\"_blank\">Sucuri</a> plugin and then go to <strong><a rel=\"nofollow noopener\" target=\"_blank\" title=\"Sucuri\" href=\"https://www.wpbeginner.com/refer/sucuri/\" data-shortcode=\"true\">Sucuri</a> Security &raquo; Last Logins</strong> page. </p>\n<p><img title=\"Failed logins\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2019/10/failed-logins.jpg\" alt=\"Failed logins \" width=\"550\" height=\"353\" class=\"alignnone size-full wp-image-69034\" /></p>\n<p>If you are seeing a large number of random login requests, then this means your wp-admin is under a brute force attack. To mitigate it, you can see our guide on how to <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-protect-your-wordpress-site-from-brute-force-attacks-step-by-step/\" title=\"How to Protect Your WordPress Site from Brute Force Attacks (Step by Step)\">block brute force attacks in WordPress</a>. </p>\n<h4>Things to Do During a DDoS Attack</h4>\n<p>DDoS attacks can happen even if you have a web application firewall and other protections in place. Companies like CloudFlare and Sucuri deal with these attacks on regular basis, and most of the time you will never hear about it since they can easily mitigate it.</p>\n<p>However in some cases, when these attacks are large, it can still impact you. In that case, it&#8217;s best to be prepared to mitigate the problems that may arise during and after the DDoS attack. </p>\n<p>Following are a few things you can do to minimize the impact of a DDoS attack. </p>\n<p><strong>1. Alert your team members</strong> </p>\n<p>If you have a team, then you need to inform co-workers about the issue. This will help them prepare for customer support queries, look out for possible issues, and help out during or after the attack. </p>\n<p><strong>2. Inform customers about the inconvience</strong> </p>\n<p>A DDoS attack can affect user experience on your website. If you run a <a href=\"https://www.wpbeginner.com/wp-tutorials/woocommerce-tutorial-ultimate-guide/\" title=\"WooCommerce Made Simple: A Step-by-Step Tutorial [+ Resources]\">WooCommerce</a> store, then your customers may not be able to place an order or login to their account. </p>\n<p>You can announce through your social media accounts that your website is having technical difficulties and everything will be back to normal soon. </p>\n<p>If the attack is large, then you can also use your <a href=\"https://www.wpbeginner.com/showcase/best-email-marketing-services/\" title=\"7 Best Email Marketing Services for Small Business (2019)\">email marketing service</a> to communicate with customers and ask them to follow your social media updates.</p>\n<p>If you have VIP customers, then you might want to use your <a href=\"https://www.wpbeginner.com/showcase/best-business-phone-services/\" title=\"6 Best Business Phone Services for Small Business (2019)\">business phone service</a> to make individual phone calls and let them know how you&#8217;re working to restore the services.</p>\n<p>Communication during these tough times make a huge difference in keeping your brand&#8217;s reputation strong.</p>\n<p><strong>3. Contact Hosting and Security Support</strong> </p>\n<p>Get in touch with your WordPress hosting provider. The attack you may be witnessing could be part of a larger attack targetting their systems. In that case, they will be able to provide you latest updates about the situation. </p>\n<p>Contact your Firewall service and let them know that your website is under a DDoS attack. They may be able to mitigate the situation even faster and can provide you with more information. </p>\n<p>In firewall providers like <a title=\"Sucuri\" href=\"https://www.wpbeginner.com/refer/sucuri/\" rel=\"nofollow noopener\" target=\"_blank\" >Sucuri</a>, you can also set your settings to be in Paranoid mode which helps block a lot of requests and make your website accessible for normal users.</p>\n<h4>Keeping Your WordPress Website Secure</h4>\n<p>WordPress is quite secure out of the box. However, as the world&#8217;s most popular website builder it is often targeted by hackers. </p>\n<p>Luckily, there are many security best practices that you can apply on your website to make it even more secure. </p>\n<p>We have compiled a complete <a href=\"https://www.wpbeginner.com/wordpress-security/\" title=\"The Ultimate WordPress Security Guide – Step by Step (2019)\">step by step WordPress security guide</a> for beginners. It will walk you through the best WordPress security settings to protect your website, and its data against common threats. </p>\n<p>We hope this article helped you learn how to block and prevent a DDoS attack on WordPress. You may also want to see our guide on the most <a href=\"https://www.wpbeginner.com/common-wordpress-errors-and-how-to-fix-them/\" title=\"40 Most Common WordPress Errors and How to Fix Them\">common WordPress errors</a> and how to fix them. </p>\n<p>If you liked this article, then please subscribe to our <a href=\"http://youtube.com/wpbeginner?sub_confirmation=1\" title=\"WPBeginner on YouTube\" target=\"_blank\" rel=\"nofollow\">YouTube Channel</a> for WordPress video tutorials. You can also find us on <a href=\"http://twitter.com/wpbeginner\" title=\"WPBeginner on Twitter\" target=\"_blank\" rel=\"nofollow\">Twitter</a> and <a href=\"https://www.facebook.com/wpbeginner\" title=\"WPBeginner on Facebook\" target=\"_blank\" rel=\"nofollow\">Facebook</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/wp-tutorials/how-to-stop-and-prevent-a-ddos-attack-on-wordpress/\">How to Stop and Prevent a DDoS Attack on WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://www.wpbeginner.com/wp-tutorials/how-to-stop-and-prevent-a-ddos-attack-on-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://www.wpbeginner.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:22:{s:6:\"server\";s:17:\"Sucuri/Cloudproxy\";s:4:\"date\";s:29:\"Mon, 04 Nov 2019 17:19:14 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:14:\"content-length\";s:5:\"13485\";s:11:\"x-sucuri-id\";s:5:\"14016\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:25:\"strict-transport-security\";a:2:{i:0;s:16:\"max-age=31536000\";i:1;s:16:\"max-age=31536000\";}s:23:\"content-security-policy\";s:26:\"upgrade-insecure-requests;\";s:4:\"vary\";s:22:\"Accept-Encoding,Cookie\";s:13:\"last-modified\";s:29:\"Mon, 04 Nov 2019 03:05:15 GMT\";s:4:\"etag\";s:20:\"\"34ad-5967c95b49d7c\"\";s:13:\"cache-control\";s:57:\"max-age=172800, public, must-revalidate, proxy-revalidate\";s:7:\"expires\";s:29:\"Wed, 06 Nov 2019 09:02:11 GMT\";s:15:\"referrer-policy\";s:26:\"no-referrer-when-downgrade\";s:27:\"access-control-allow-origin\";s:1:\"*\";s:6:\"pragma\";s:6:\"public\";s:16:\"content-encoding\";s:4:\"gzip\";s:13:\"x-proxy-cache\";s:3:\"HIT\";s:14:\"x-sucuri-cache\";s:3:\"HIT\";s:13:\"accept-ranges\";s:5:\"bytes\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(199140,'_transient_timeout_jetpack_https_test','1572944946','no'),(199141,'_transient_jetpack_https_test','1','no'),(199142,'_transient_timeout_jetpack_https_test_message','1572944946','no'),(199143,'_transient_jetpack_https_test_message','','no'),(199783,'_transient_timeout_wc_report_sales_by_date','1572998849','no'),(199784,'_transient_wc_report_sales_by_date','a:8:{s:32:\"ca70bb4bd38a8cc5f042e5945d759e9a\";a:0:{}s:32:\"3ef569906e787742798d993d6be7b4cd\";a:0:{}s:32:\"aab789d7da9394002c878bb5350d7767\";a:0:{}s:32:\"79cde7f31ecaf77e5b49df3344a6b4e3\";N;s:32:\"88c57ee188988098edadf77d8854ea0f\";a:0:{}s:32:\"cd6cd074decf5d82ff378d0b68a567f9\";a:0:{}s:32:\"e59f008010a39a1e261e172450b82257\";a:0:{}s:32:\"81c450315726d5c645bc069a97d901c6\";a:0:{}}','no'),(199785,'_transient_timeout_wc_admin_report','1572974322','no'),(199786,'_transient_wc_admin_report','a:1:{s:32:\"d04b92448c2cd5666487596a1e9e2630\";a:0:{}}','no'),(195378,'_transient_timeout_wc_customer_bought_product_04fa6dde6680a482ddeab1bc36ee08c6','1574783560','no'),(195379,'_transient_wc_customer_bought_product_04fa6dde6680a482ddeab1bc36ee08c6','a:2:{s:7:\"version\";s:10:\"1571319046\";s:5:\"value\";a:0:{}}','no'),(198672,'_transient_timeout_external_ip_address_35.205.161.171','1573437761','no'),(198673,'_transient_external_ip_address_35.205.161.171','198.46.81.23','no'),(196935,'_transient_timeout_external_ip_address_35.240.189.61','1573205500','no'),(196936,'_transient_external_ip_address_35.240.189.61','198.46.81.23','no'),(201085,'_transient_timeout_jetpack_jitm_2def128d61240f0c13c321cc84d58c8','1572913634','no'),(201086,'_transient_jetpack_jitm_2def128d61240f0c13c321cc84d58c8','a:1:{s:18:\"last_response_time\";i:1572913334;}','no'),(201087,'_transient_timeout_jpp_li_b10982d2feced8adcfc9202e15a5a4f2','1572916965','no'),(201088,'_transient_jpp_li_b10982d2feced8adcfc9202e15a5a4f2','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (54.37.36.124)\";s:17:\"seconds_remaining\";i:3597;s:16:\"blocked_attempts\";s:5:\"13373\";s:6:\"expire\";i:1572916965;}','no'),(201099,'woocommerce_db_version','3.7.1','yes'),(201094,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:170;s:3:\"all\";i:102;s:9:\"moderated\";s:3:\"100\";s:8:\"approved\";s:1:\"2\";s:4:\"spam\";s:2:\"68\";s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(201095,'_transient_as_comment_count','O:8:\"stdClass\":7:{s:9:\"moderated\";s:3:\"100\";s:8:\"approved\";s:1:\"2\";s:4:\"spam\";s:2:\"68\";s:14:\"total_comments\";i:170;s:3:\"all\";i:170;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(200926,'jetpack_sync_settings_taxonomies_blacklist','a:0:{}','yes'),(201146,'_site_transient_timeout_theme_roots','1572916070','no'),(201147,'_site_transient_theme_roots','a:5:{s:13:\"generatepress\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(186771,'_transient_timeout_wc_customer_bought_product_9771499b579b6fe0e9bd6933733a5bee','1572979484','no'),(186772,'_transient_wc_customer_bought_product_9771499b579b6fe0e9bd6933733a5bee','a:2:{s:7:\"version\";s:10:\"1570039467\";s:5:\"value\";a:0:{}}','no'),(190610,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.2.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.4\";s:7:\"version\";s:5:\"5.2.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1572912877;s:15:\"version_checked\";s:5:\"5.2.4\";s:12:\"translations\";a:0:{}}','no'),(174093,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:26:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:117:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:117:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:119:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:98:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:14;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:15;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:16;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:119:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:18;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:19;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:20;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:21;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:103:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:22;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:23;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:24;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:25;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1572913322;}','no'),(200867,'_site_transient_timeout_browser_3162f634bebe163cdcff2af4860979c2','1573517249','no'),(200868,'_site_transient_browser_3162f634bebe163cdcff2af4860979c2','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"77.0.3865.120\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(201096,'_transient_timeout__woocommerce_helper_subscriptions','1572914343','no'),(201097,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(201108,'_transient_timeout_hmbkp_database_size','1573518308','no'),(201109,'_transient_hmbkp_database_size','5659642','no'),(201110,'_transient_timeout_jetpack_jitm_82cc67444923a4c41c4c34c8a8c262a','1572913808','no'),(201111,'_transient_jetpack_jitm_82cc67444923a4c41c4c34c8a8c262a','a:1:{s:18:\"last_response_time\";i:1572913508;}','no'),(201112,'_transient_timeout_hmbkp_root_size','1572999909','no'),(201113,'_transient_hmbkp_root_size','298117556','no'),(201116,'_transient_timeout_hmbkp_wp_cron_test_beacon','1573518315','no'),(201117,'_transient_hmbkp_wp_cron_test_beacon','1','no'),(201126,'_transient_timeout_jpp_li_6f0852558c93800814554bcb1f917d02','1572917334','no'),(201127,'_transient_jpp_li_6f0852558c93800814554bcb1f917d02','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (35.222.102.63)\";s:17:\"seconds_remaining\";i:3468;s:16:\"blocked_attempts\";s:5:\"13374\";s:6:\"expire\";i:1572917334;}','no'),(201135,'_transient_timeout_jpp_li_40bb9da5f1e3c5fe31d911b48d2ea867','1572917642','no'),(201136,'_transient_jpp_li_40bb9da5f1e3c5fe31d911b48d2ea867','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (82.165.123.226)\";s:17:\"seconds_remaining\";i:3562;s:16:\"blocked_attempts\";s:5:\"13375\";s:6:\"expire\";i:1572917642;}','no'),(201138,'_transient_timeout_jpp_li_d168b833d6e915b087fa5a7642205f7d','1572917682','no'),(201139,'_transient_jpp_li_d168b833d6e915b087fa5a7642205f7d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (162.244.95.2)\";s:17:\"seconds_remaining\";i:3452;s:16:\"blocked_attempts\";s:5:\"13376\";s:6:\"expire\";i:1572917682;}','no'),(201151,'_transient_timeout_jpp_li_9ba446294cbac998757125e26cbcd7c1','1572917710','no'),(201152,'_transient_jpp_li_9ba446294cbac998757125e26cbcd7c1','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (35.205.161.171)\";s:17:\"seconds_remaining\";i:3342;s:16:\"blocked_attempts\";s:5:\"13377\";s:6:\"expire\";i:1572917710;}','no'),(201167,'_transient_timeout_jpp_li_c2617fe834d835cffb6b954576ee35ee','1572918009','no'),(201168,'_transient_jpp_li_c2617fe834d835cffb6b954576ee35ee','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (35.232.243.245)\";s:17:\"seconds_remaining\";i:3278;s:16:\"blocked_attempts\";s:5:\"13378\";s:6:\"expire\";i:1572918009;}','no'),(201176,'_transient_timeout_jpp_li_3342c19c6aeea631ef21dd5a47a2050c','1572918228','no'),(201177,'_transient_jpp_li_3342c19c6aeea631ef21dd5a47a2050c','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (68.183.73.185)\";s:17:\"seconds_remaining\";i:3328;s:16:\"blocked_attempts\";s:5:\"13379\";s:6:\"expire\";i:1572918228;}','no'),(201185,'_transient_timeout_jpp_li_9ae2f473734e70d3e6dceddb0e80f061','1572918525','no'),(201186,'_transient_jpp_li_9ae2f473734e70d3e6dceddb0e80f061','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (216.230.117.128)\";s:17:\"seconds_remaining\";i:3453;s:16:\"blocked_attempts\";s:5:\"13380\";s:6:\"expire\";i:1572918525;}','no'),(201187,'_transient_timeout_hm_backdrop-fb819e6f3cb9f02fd3a83b766d27','1572915394','no'),(201188,'_transient_hm_backdrop-fb819e6f3cb9f02fd3a83b766d27','a:2:{s:8:\"callback\";s:38:\"\\HM\\BackUpWordPress\\run_schedule_async\";s:6:\"params\";a:1:{i:0;s:10:\"1534984429\";}}','no'),(201022,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4637;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:3727;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2647;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2520;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1942;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1770;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1756;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1473;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1452;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1452;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1438;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1389;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1365;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1296;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1159;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1140;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1111;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1077;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1060;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:960;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:863;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:851;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:847;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:821;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:761;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:754;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:740;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:738;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:737;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:710;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:706;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:690;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:683;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:678;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:670;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:657;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:637;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:633;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:625;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:623;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:614;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:602;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:578;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:577;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:566;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:564;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:560;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:547;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:539;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:537;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:530;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:526;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:525;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:523;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:521;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:517;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:507;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:486;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:485;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:482;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:482;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:480;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:462;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:460;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:456;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:452;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:431;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:424;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:419;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:419;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:418;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:417;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:414;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:409;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:404;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:403;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:400;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:393;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:387;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:387;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:383;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:380;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:371;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:368;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:366;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:362;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:360;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:359;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:352;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:349;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:348;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:339;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:330;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:329;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:328;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:327;}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";i:321;}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";i:319;}s:6:\"author\";a:3:{s:4:\"name\";s:6:\"author\";s:4:\"slug\";s:6:\"author\";s:5:\"count\";i:317;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:317;}}','no'),(145098,'show_comments_cookies_opt_in','1','yes'),(201017,'rewrite_rules','a:247:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:11:\"products/?$\";s:27:\"index.php?post_type=product\";s:41:\"products/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:36:\"products/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:28:\"products/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:46:\"category/(.+?)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:55:\"index.php?category_name=$matches[1]&flpaged=$matches[2]\";s:43:\"tag/([^/]+)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:45:\"index.php?tag=$matches[1]&flpaged=$matches[2]\";s:42:\"([0-9]{4})/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:46:\"index.php?year=$matches[1]&flpaged=$matches[2]\";s:55:\"([0-9]{4})/([0-9]{1,2})/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:67:\"index.php?year=$matches[1]&monthnum=$matches[2]&flpaged=$matches[3]\";s:68:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:83:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&flpaged=$matches[4]\";s:46:\"author/([^/]+)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:53:\"index.php?author_name=$matches[1]&flpaged=$matches[2]\";s:40:\"([0-9]+)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:43:\"index.php?p=$matches[1]&flpaged=$matches[2]\";s:39:\"(.?.+?)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:50:\"index.php?pagename=$matches[1]&flpaged=$matches[2]\";s:37:\"(.+?)/paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:46:\"index.php?name=$matches[1]&flpaged=$matches[2]\";s:26:\"paged-[0-9]{1,}/([0-9]*)/?\";s:40:\"index.php?page_id=27&flpaged=$matches[1]\";s:31:\"paged-[0-9]{1,}/?([0-9]{1,})/?$\";s:30:\"index.php?&flpaged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:36:\"download/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"download/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"download/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"download/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"download/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"download/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"download/([^/]+)/embed/?$\";s:40:\"index.php?wpdmpro=$matches[1]&embed=true\";s:29:\"download/([^/]+)/trackback/?$\";s:34:\"index.php?wpdmpro=$matches[1]&tb=1\";s:37:\"download/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?wpdmpro=$matches[1]&paged=$matches[2]\";s:44:\"download/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?wpdmpro=$matches[1]&cpage=$matches[2]\";s:34:\"download/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?wpdmpro=$matches[1]&wc-api=$matches[3]\";s:40:\"download/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"download/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:33:\"download/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?wpdmpro=$matches[1]&page=$matches[2]\";s:25:\"download/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"download/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"download/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"download/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"download/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"download/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:58:\"download-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?wpdmcategory=$matches[1]&feed=$matches[2]\";s:53:\"download-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?wpdmcategory=$matches[1]&feed=$matches[2]\";s:34:\"download-category/([^/]+)/embed/?$\";s:45:\"index.php?wpdmcategory=$matches[1]&embed=true\";s:46:\"download-category/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?wpdmcategory=$matches[1]&paged=$matches[2]\";s:28:\"download-category/([^/]+)/?$\";s:34:\"index.php?wpdmcategory=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"fl-builder-template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"fl-builder-template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"fl-builder-template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"fl-builder-template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"fl-builder-template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"fl-builder-template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"fl-builder-template/([^/]+)/embed/?$\";s:52:\"index.php?fl-builder-template=$matches[1]&embed=true\";s:40:\"fl-builder-template/([^/]+)/trackback/?$\";s:46:\"index.php?fl-builder-template=$matches[1]&tb=1\";s:48:\"fl-builder-template/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?fl-builder-template=$matches[1]&paged=$matches[2]\";s:55:\"fl-builder-template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?fl-builder-template=$matches[1]&cpage=$matches[2]\";s:45:\"fl-builder-template/([^/]+)/wc-api(/(.*))?/?$\";s:60:\"index.php?fl-builder-template=$matches[1]&wc-api=$matches[3]\";s:51:\"fl-builder-template/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:62:\"fl-builder-template/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:44:\"fl-builder-template/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?fl-builder-template=$matches[1]&page=$matches[2]\";s:36:\"fl-builder-template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"fl-builder-template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"fl-builder-template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"fl-builder-template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"fl-builder-template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"fl-builder-template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:69:\"fl-builder-template-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?fl-builder-template-category=$matches[1]&feed=$matches[2]\";s:64:\"fl-builder-template-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?fl-builder-template-category=$matches[1]&feed=$matches[2]\";s:45:\"fl-builder-template-category/([^/]+)/embed/?$\";s:61:\"index.php?fl-builder-template-category=$matches[1]&embed=true\";s:57:\"fl-builder-template-category/([^/]+)/page/?([0-9]{1,})/?$\";s:68:\"index.php?fl-builder-template-category=$matches[1]&paged=$matches[2]\";s:39:\"fl-builder-template-category/([^/]+)/?$\";s:50:\"index.php?fl-builder-template-category=$matches[1]\";s:65:\"fl-builder-template-type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?fl-builder-template-type=$matches[1]&feed=$matches[2]\";s:60:\"fl-builder-template-type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?fl-builder-template-type=$matches[1]&feed=$matches[2]\";s:41:\"fl-builder-template-type/([^/]+)/embed/?$\";s:57:\"index.php?fl-builder-template-type=$matches[1]&embed=true\";s:53:\"fl-builder-template-type/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?fl-builder-template-type=$matches[1]&paged=$matches[2]\";s:35:\"fl-builder-template-type/([^/]+)/?$\";s:46:\"index.php?fl-builder-template-type=$matches[1]\";s:48:\"generate_page_header/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:58:\"generate_page_header/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:78:\"generate_page_header/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"generate_page_header/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:73:\"generate_page_header/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:54:\"generate_page_header/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"generate_page_header/([^/]+)/embed/?$\";s:53:\"index.php?generate_page_header=$matches[1]&embed=true\";s:41:\"generate_page_header/([^/]+)/trackback/?$\";s:47:\"index.php?generate_page_header=$matches[1]&tb=1\";s:49:\"generate_page_header/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?generate_page_header=$matches[1]&paged=$matches[2]\";s:56:\"generate_page_header/([^/]+)/comment-page-([0-9]{1,})/?$\";s:60:\"index.php?generate_page_header=$matches[1]&cpage=$matches[2]\";s:46:\"generate_page_header/([^/]+)/wc-api(/(.*))?/?$\";s:61:\"index.php?generate_page_header=$matches[1]&wc-api=$matches[3]\";s:52:\"generate_page_header/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:63:\"generate_page_header/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:45:\"generate_page_header/([^/]+)(?:/([0-9]+))?/?$\";s:59:\"index.php?generate_page_header=$matches[1]&page=$matches[2]\";s:37:\"generate_page_header/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"generate_page_header/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"generate_page_header/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"generate_page_header/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"generate_page_header/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"generate_page_header/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=27&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(145305,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(145308,'woocommerce_allow_bulk_remove_personal_data','no','no'),(145309,'woocommerce_show_marketplace_suggestions','yes','no'),(145110,'recovery_keys','a:0:{}','yes'),(200462,'_transient_timeout_wc_low_stock_count','1575492264','no'),(200463,'_transient_wc_low_stock_count','0','no'),(200464,'_transient_timeout_wc_outofstock_count','1575492264','no'),(200465,'_transient_wc_outofstock_count','0','no'),(199711,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1572912916;s:7:\"checked\";a:5:{s:13:\"generatepress\";s:5:\"2.3.2\";s:13:\"twentyfifteen\";s:3:\"2.2\";s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"1.9\";s:13:\"twentysixteen\";s:3:\"1.7\";}s:8:\"response\";a:3:{s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.5\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.5.zip\";s:8:\"requires\";s:3:\"4.1\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.2.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:13:\"twentysixteen\";a:6:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.2.0.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(145258,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(199805,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1572931154','no'),(199806,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News –  – WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Nov 2019 17:43:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.4-alpha-46646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"2019 Annual Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/news/2019/11/2019-annual-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 02 Nov 2019 21:15:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7460\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:326:\"It’s time for our annual user and developer survey! If you’re a WordPress user or professional, we want your feedback. It only takes a few minutes to fill out the survey, which will provide an overview of how people use WordPress. We&#8217;re excited to announce that this year, for the first time, the survey is [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1999:\"\n<div class=\"wp-block-image\"><figure class=\"alignright size-large is-resized\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2019/11/image-12-1.png?fit=632%2C281&amp;ssl=1\" alt=\"\" class=\"wp-image-7472\" width=\"329\" height=\"146\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2019/11/image-12-1.png?w=1070&amp;ssl=1 1070w, https://i0.wp.com/wordpress.org/news/files/2019/11/image-12-1.png?resize=300%2C133&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2019/11/image-12-1.png?resize=1024%2C456&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2019/11/image-12-1.png?resize=768%2C342&amp;ssl=1 768w\" sizes=\"(max-width: 329px) 100vw, 329px\" /></figure></div>\n\n\n\n<p>It’s time for our annual user and developer survey! If you’re a WordPress user or professional, we want your feedback.</p>\n\n\n\n<p>It only takes a few minutes to <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-english\">fill out the survey</a>, which will provide an overview of how people use WordPress. We&#8217;re excited to announce that this year, for the first time, the survey is also available in 5 additional languages:  <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-french\">French</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-german\">German</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-japanese\">Japanese</a>, <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-russian\">Russian</a>, and <a href=\"https://wordpressdotorg.survey.fm/wordpress-2019-survey-spanish\">Spanish</a>. Many thanks to the community volunteers who helped with the translation effort!</p>\n\n\n\n<p>The survey will be open for 4 weeks, and results will be published on this blog. All data will be anonymized: no email addresses or IP addresses will be associated with published results. To learn more about WordPress.org’s privacy practices, check out the <a href=\"https://wordpress.org/about/privacy/\">privacy policy</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:48:\"\n		\n		\n				\n		\n				\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"The Month in WordPress: October 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2019/11/the-month-in-wordpress-october-2019/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Nov 2019 07:28:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7449\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:325:\"October has been a busy month with preparations for WordCamp US as well as the next major release of WordPress. Read on to find out about all that work and more. WordPress 5.2.4 On October 14, WordPress 5.2.4 was released as a security release fixing 6 security issues. The fixes were backported to earlier versions [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6219:\"\n<p>October has been a busy month with preparations for WordCamp US as well as the next major release of WordPress. Read on to find out about all that work and more.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.2.4</h2>\n\n\n\n<p>On October 14, <a href=\"https://wordpress.org/news/2019/10/wordpress-5-2-4-security-release/\">WordPress 5.2.4 was released</a> as a security release fixing 6 security issues. The fixes were backported to earlier versions of WordPress as well, so they’re available for sites not yet upgraded to 5.2.</p>\n\n\n\n<p>This kind of release is only possible because people <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">report security issues responsibly</a> so that the Core team can address them. You can find out more specific information about the fixes on <a href=\"https://wordpress.org/support/wordpress-version/version-5-2-4/\">the release documentation page</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordPress 5.3</h2>\n\n\n\n<p>WordPress 5.3 has seen active development over the past month, with a release date set for November 12. You can <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-rc3/\">download and test the release candidate</a> to get a taste of what to expect—this is largely what final release will look like.</p>\n\n\n\n<p>This is a big release with a number of exciting and important updates. Among them are <a href=\"https://make.wordpress.org/core/2019/10/18/noteworthy-admin-css-changes-in-wordpress-5-3/\">significant changes to the look of the admin interface</a>, enhancements to the block editor that will affect developers of <a href=\"https://make.wordpress.org/core/2019/09/27/block-editor-theme-related-updates-in-wordpress-5-3/\">themes</a> and <a href=\"https://make.wordpress.org/core/2019/09/24/new-block-apis-in-wordpress-5-3/\">plugins</a>, <a href=\"https://make.wordpress.org/core/2019/10/09/introducing-handling-of-big-images-in-wordpress-5-3/\">large improvements</a> to the way that Core <a href=\"https://make.wordpress.org/core/2019/10/11/updates-to-image-processing-in-wordpress-5-3/\">processes images</a>, updates to cater for some functions <a href=\"https://make.wordpress.org/core/2019/10/11/wordpress-and-php-7-4/\">specific to PHP 7.4</a>, improvements to the <a href=\"https://make.wordpress.org/core/2019/09/25/whats-new-in-site-health-for-wordpress-5-3/\">Site Health feature</a>, and many more improvements that are all documented in <a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">the WordPress 5.3 Field Guide</a>.</p>\n\n\n\n<p>In addition to these Core updates, the upcoming major release will also include the new default theme, <a href=\"https://make.wordpress.org/core/2019/09/06/introducing-twenty-twenty/\">Twenty Twenty</a>.</p>\n\n\n\n<p>Want to get involved in building WordPress Core? You can contribute by <a href=\"https://make.wordpress.org/core/handbook/testing/\">testing the upcoming release</a>, as well as follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New Core Committers</h2>\n\n\n\n<p><a href=\"https://meta.trac.wordpress.org/ticket/4760\">Three new committers have been added</a> to the WordPress Core organizational structure. Core committers are individuals who have direct access to the Core development code repositories in order to publish updates to the software.</p>\n\n\n\n<p>The new committers are Ian Belanger (<a href=\'https://profiles.wordpress.org/ianbelanger/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ianbelanger</a>), Timothy Jacobs (<a href=\'https://profiles.wordpress.org/timothyblynjacobs/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>timothyblynjacobs</a>), and Joe Dolson (<a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a>). While Ian’s commit access is specifically for Core themes, both Timothy and Joe have full access to Core. This type of access is only given to individuals who have proved themselves with high-quality contributions and a deep understanding of how the WordPress project works.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>The Accessibility Team is <a href=\"https://make.wordpress.org/accessibility/2019/10/26/accessibility-team-representatives-election-for-2020/\">looking for new team representatives</a> for 2020.</li><li><a href=\"https://2019.us.wordcamp.org/\">WordCamp US</a> is happening on November 1-3 and is set to be the largest WordPress event in North America.</li><li>WordCamp Asia, the first flagship event in the region, <a href=\"https://twitter.com/WordCampAsia/status/1187079744409526272\">will be rolling out their next batch of ticket sales</a> on November 1.</li><li>Work continues on Gutenberg, with <a href=\"https://make.wordpress.org/core/2019/10/30/whats-new-in-gutenberg-30-october/\">the latest update</a> including significant updates to the Cover block and many other areas.</li><li>The WordCamp Europe team have published <a href=\"https://make.wordpress.org/community/2019/10/27/update-contributor-orientation-tool/\">an update about the Contributor Orientation tool</a> they worked on earlier this year.</li><li>The WordCamp US team has published <a href=\"https://make.wordpress.org/community/2019/10/28/grow-your-meetup-survey-results-for-wcus/\">the results of their Grow Your Meetup survey</a> ahead of their 2019 event.</li><li>The Theme Review Team <a href=\"https://make.wordpress.org/themes/2019/10/22/meeting-notes-for-tuesday-22nd-october-2019/\">is making plans</a> to implement a curated page for displaying featured themes in the Theme Directory.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7449\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.3 RC3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2019/10/wordpress-5-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 29 Oct 2019 21:16:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7439\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:379:\"The third release candidate for WordPress 5.3 is now available! WordPress 5.3 is currently scheduled to be released on&#160;November 12 2019, but we need&#160;your&#160;help to get there—if you haven’t tried 5.3 yet, now is the time! There are two ways to test the WordPress 5.3 release candidate: Try the WordPress Beta Tester plugin (choose the “bleeding edge [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3088:\"\n<p>The third release candidate for WordPress 5.3 is now available!</p>\n\n\n\n<p>WordPress 5.3 is currently scheduled to be released on&nbsp;<strong><a href=\"https://make.wordpress.org/core/5-3/\">November 12 2019</a></strong>, but we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.3 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.3 release candidate:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.3-RC3.zip\">download the release candidate here</a> (zip).</li></ul>\n\n\n\n<p>For details about what to expect in WordPress 5.3, please see the <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\">first</a> and <a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-rc2/\">second</a> release candidate posts.</p>\n\n\n\n<p>Release Candidate 3 contains improvements to the new About page, bug fixes for the new default theme, Twenty Twenty (see <a href=\"https://core.trac.wordpress.org/ticket/48450\">#48450</a>), and 9 fixes for the following bugs and regressions:</p>\n\n\n\n<ul><li>Four bugs in the block editor have been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/48447\">#48447</a>).</li><li>Three Date/Time related bugs have been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/48384\">#48384</a>).</li><li>A regression in <code>date_i18n()</code> has been fixed (see <a href=\"https://core.trac.wordpress.org/ticket/28636\">#28636</a>).</li><li>An accessibility color contrast regression for primary buttons when using alternate admin color schemes was fixed (see <a href=\"https://core.trac.wordpress.org/ticket/48396\">#48396</a>).</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.3 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.3. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can figure those out before the final release.</p>\n\n\n\n<p>The&nbsp;<a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">WordPress 5.3 Field Guide</a>&nbsp;has also been published, which details the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7439\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.3 RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2019/10/wordpress-5-3-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 22 Oct 2019 20:08:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7425\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:388:\"The second release candidate for WordPress 5.3 is now available! WordPress 5.3 is currently scheduled to be released on&#160;November 12 2019, but we need&#160;your&#160;help to get there—if you haven’t tried 5.3 yet, now is the time! There are two ways to test the WordPress 5.3 release candidate: Try the&#160;WordPress Beta Tester&#160;plugin (choose the “bleeding edge [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Francesca Marano\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3782:\"\n<p>The second release candidate for WordPress 5.3 is now available!</p>\n\n\n\n<p>WordPress 5.3 is currently scheduled to be released on&nbsp;<strong><a href=\"https://make.wordpress.org/core/5-3/\">November 12 2019</a></strong>, but we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.3 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.3 release candidate:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.3-RC2.zip\">download the release candidate here</a>&nbsp;(zip).</li></ul>\n\n\n\n<p>For details about what to expect in WordPress 5.3, please see the&nbsp;<a href=\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>Release Candidate 2 contains improvements to the new About page, and <a href=\"https://core.trac.wordpress.org/query?id=48381%2C48363%2C48022%2C48304%2C48379%2C48087%2C47699&amp;milestone=5.3&amp;group=component&amp;col=id&amp;col=summary&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=milestone&amp;order=priority\">10 fixes</a> for the following bugs and regressions:</p>\n\n\n\n<ul><li>Three bugs contained in RC1 within the block editor have been fixed (see #<a href=\"https://core.trac.wordpress.org/ticket/48381\">48381</a>).</li><li>A bug has been fixed where links within comments did not get the correct <code>rel</code> attribute (see #<a href=\"https://core.trac.wordpress.org/ticket/48022\">48022</a>).</li><li>The <code>scaled-</code> string has been added to file names when images are downsized if determined &#8220;BIG&#8221; (see #<a href=\"https://core.trac.wordpress.org/ticket/48304\">48304</a>).</li><li>The buttons group layout has been fixed in IE11 (see #<a href=\"https://core.trac.wordpress.org/ticket/48087\">48087</a>).</li><li>A bug with <code>boolean</code> <code>false</code> meta values in the REST API has been fixed (see #<a href=\"https://core.trac.wordpress.org/ticket/48363\">48363</a>).</li><li>The error code encountered when the native PHP JSON extension is missing has been adjusted to be unique (see #<a href=\"https://core.trac.wordpress.org/ticket/47699\">47699</a>).</li><li>When uploading files, HTTP error code support has been expanded to include all 5xx errors (see #<a href=\"https://core.trac.wordpress.org/ticket/48379\">48379</a>).</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.3 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.3. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can figure those out before the final release.</p>\n\n\n\n<p>The&nbsp;<a href=\"https://make.wordpress.org/core/2019/10/17/wordpress-5-3-field-guide/\">WordPress 5.3 Field Guide</a>&nbsp;has also been published, which details the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7425\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:64:\"\n		\n		\n				\n				\n		\n				\n		\n\n		\n				\n								\n							\n		\n							\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Empowering Generations of Digital Natives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Oct 2019 20:03:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:24:\"digital citizenship week\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7413\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"Technology is changing faster each year. Digital literacy can vary between ages but there are lots of ways different generations can work together and empower each as digital citizens. No matter whether you’re a parent or caregiver, teacher or mentor, it’s hard to know the best way to teach younger generations the skills needed to [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8968:\"\n<p>Technology is changing faster each year. Digital literacy can vary between ages but there are lots of ways different generations can work together and empower each as digital citizens.</p>\n\n\n\n<p>No matter whether you’re a parent or caregiver, teacher or mentor, it’s hard to know the best way to teach younger generations the skills needed to be an excellent digital citizen. If you’re not confident about your own tech skills, you may wonder how you can help younger generations become savvy digital citizens. But using technology responsibly is about more than just technical skills. By collaborating across generations, you can also strengthen all your family members’ skills, and offer a shared understanding of what the internet can provide and how to use it to help your neighborhoods and wider society.&nbsp;<br></p>\n\n\n\n<h2>Taking Gen Z Beyond Digital Savvy</h2>\n\n\n\n<h3>Open up the dialogue</h3>\n\n\n\n<p>Even if you’re not fully confident in your own tech skills, you can help develop digital citizenship skills in others. If you feel comfortable during everyday conversation, you could describe a tech situation you have come across and ask family members if they have ever experienced something similar. You can give them a chance to share how they handled it or how it made them feel. This can help encourage them to think critically and to react with empathy. And being asked for advice can make them feel appreciated and empowered. But opening up the conversation can also be as simple as asking if they’ve seen anything online lately that they found interesting or wanted to talk about.</p>\n\n\n\n<h3>Share access to free and affordable training</h3>\n\n\n\n<p>Open source content management systems have made online publishing accessible to a more diverse group of people. Dozens of content platforms offer hands-on training at no or low cost. <a href=\"https://wordpress.tv/\">WordPress.tv</a>, <a href=\"https://www.linkedin.com/learning/topics/wordpress\">LinkedIn Learning</a>, and others have low-cost video libraries with thousands of recorded talks and workshops and the WordPress Training team have excellent downloadable lesson plans and materials. These platforms not only feature content that helps develop tech and content creation skills but also content around ethics, diversity and community building.&nbsp;&nbsp;</p>\n\n\n\n<h3>Find a sense of community and belonging</h3>\n\n\n\n<p>One of the disadvantages of increased digitalization is that <a href=\"https://www.theatlantic.com/magazine/archive/2017/09/has-the-smartphone-destroyed-a-generation/534198/\">younger generations and us all may spend less time hanging out in-person.</a> Digital time spent with others is no replacement for in-person interactions. The awareness and mutual understanding which comes from back and forth interaction is needed for positive interpersonal skills. This is hard to replace in digital communities and those skills can only be learned with lots of hands-on practice.&nbsp;</p>\n\n\n\n<h3>Learn the many benefits of volunteering&nbsp;</h3>\n\n\n\n<p>There are WordPress events across the world that provide a great place to learn new skills to share with your families and friends. Some work with schools and colleges to offer special events which are open to all ages. There are also plenty of small ways to volunteer with the WordPress project that can be done at home to practice new skills.</p>\n\n\n\n<p>In addition to attending events where you can learn skills and hang out with others with similar interests, the WordPress ecosystem offers countless opportunities to be actively involved. Professionals, hobbyists, and learners all make a difference by contributing to the ongoing creation of the WordPress platform. Together these people, who are known as contributors, form the <a href=\"https://make.wordpress.org/\">WordPress open source community.</a>&nbsp;</p>\n\n\n\n<h4>WordPress is created by volunteer contributors</h4>\n\n\n\n<p>Not only are these contributors creating an amazingly flexible platform for all to use, it is an environment where you can continue to improve your skills, both technical and interpersonal. Open-source software projects can introduce you to people you would otherwise not get the chance to meet, locally and internationally. If you have a zest for learning, and for finding others to connect with, WordPress has many ways to meet contributors in person!</p>\n\n\n\n<h4>WordPress events are organized by volunteers</h4>\n\n\n\n<p>WordPress community events are volunteer-run. This can be a great way to give back to the project and practice all sorts of skills. Talk to your local event about how you could get involved and if you would like to bring older teenagers and young adults with you. You will not need any pre-existing tech skills to attend these events but they are a great way to discover areas you might want to learn more about.&nbsp;</p>\n\n\n\n<h4>Contributor days offer a great opportunity to get involved</h4>\n\n\n\n<p>These events are specially designed to help you get involved in building the open-source WordPress platform. You can collaborate with other members of its community and find areas that are right for you to use and grow your skills. All of the tasks you will discover at an event can be continued at home and some are easy to get other family members involved in learning and adding in ideas.&nbsp;</p>\n\n\n\n<p>Contributors come from all sorts of backgrounds and locations, some may live near you and others thousands of miles away. Working alongside lots of different cultures and countries can open up new ideas for young people letting them learn new ways of doing things and discover different perspectives. All those different perspectives can cause misunderstandings. But being involved in a global learning community is a great way to practice communicating across cultural boundaries.&nbsp;</p>\n\n\n\n<h4>Getting involved can be rewarding in many (unexpected) ways</h4>\n\n\n\n<p>The most rewarding part of actively taking part in WordPress events is making budding friendships. New connections often turn into long-lasting friendships that are likely to continue for years to come, both online and offline. With a global community, these friendships can potentially lead to lots of international adventures too!</p>\n\n\n\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Getting ready for the <a href=\"https://twitter.com/WordCampBTN?ref_src=twsrc%5Etfw\">@WordCampBTN</a>. I&#8217;ve got my 5kg backpack and one-way ticket to London in a few days <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f929.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> What shall I do after? <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://t.co/cdQqeyNWif\">pic.twitter.com/cdQqeyNWif</a></p>— Sabrina Zeidan going to #WCKyiv (@sabrina_zeidan) <a href=\"https://twitter.com/sabrina_zeidan/status/1160265428473712640?ref_src=twsrc%5Etfw\">August 10, 2019</a></blockquote>\n\n\n\n<h3>Make our digital world safer and more inclusive</h3>\n\n\n\n<p>Befriending people from a wide variety of cultures and backgrounds can be an enriching experience in itself. It can also help you make us make more informed decisions. The more we interact with a diverse range of people, the more empathic we become. Some of the most valuable learning that can be offered to Gen Z (and probably to all of us at times) is that what we come across in fast-moving digital communities isn’t always the entire view.&nbsp;</p>\n\n\n\n<h2>All things considered….</h2>\n\n\n\n<p>Anyone who is a digital native may not need encouragement to obtain tech skills. But they may not be aware that digital communities are still communities and <a href=\"https://wordpress.org/news/2019/10/responsible-participation-in-online-communities/\">we need to use the same sorts of people skills for both offline and online locations</a>. Opening up conversations about situations they may experience online that may require them to (re)act responsibly, can encourage them to think critically and act with empathy. Compared to previous generations, digital natives spend substantially more time by themselves while using devices, so encouraging them to join real-life communities, such as WordPress, could be the first step to learning what it means to be a good digital citizen!&nbsp; </p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p><a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>, <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>, <a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a> &amp; <a href=\'https://profiles.wordpress.org/annemariedh/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annemariedh</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wordpress.org/news/2019/10/empowering-generations-of-digital-natives/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7413\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 5.3 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2019/10/wordpress-5-3-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 21:18:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7397\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:360:\"The first release candidate for WordPress 5.3 is now available! This is an important milestone as we progress toward the WordPress 5.3 release date. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.3 is currently [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Francesca Marano\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3144:\"\n<p>The first release candidate for WordPress 5.3 is now available!</p>\n\n\n\n<p>This is an important milestone as we progress toward the WordPress 5.3 release date. “Release Candidate” means that the new version is ready for release, but with millions of users and thousands of plugins and themes, it’s possible something was missed. WordPress 5.3 is currently scheduled to be released&nbsp;on&nbsp;<strong>November 12, 2019</strong>, but we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.3 yet, <strong>now is the time</strong>!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.3 release candidate: </p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.3-RC1.zip\">download the release candidate here</a>&nbsp;(zip).</li></ul>\n\n\n\n<h2>What’s in WordPress 5.3?</h2>\n\n\n\n<p>WordPress 5.3 expands and refines the <strong>Block Editor</strong> introduced in WordPress 5.0 with <strong>new blocks, more intuitive interactions, and improved accessibility</strong>. New features in the editor increase design freedoms, provide additional layout options and style variations to allow designers complete control over the look of a site.</p>\n\n\n\n<p>This release also introduces the <strong>Twenty Twenty</strong> theme giving the user more design flexibility and integration with the Block Editor. </p>\n\n\n\n<p>In addition, WordPress 5.3 allows developers to work with <strong>dates and timezones</strong> in a more reliable way and prepares the software to work with <strong>PHP 7.4</strong> to be release later this year. </p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.3 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme file to 5.3. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can figure those out before the final release.</p>\n\n\n\n<p>The&nbsp;WordPress 5.3 Field Guide&nbsp;will be published within the next 24 hours with a more detailed dive into the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;This release also marks the&nbsp;<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a>&nbsp;point of the 5.3 release schedule.</p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7397\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:57:\"\n		\n		\n				\n		\n				\n		\n		\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Responsible Participation In Online Communities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2019/10/responsible-participation-in-online-communities/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 15 Oct 2019 19:41:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:24:\"digital citizenship week\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"open source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7386\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:365:\"In our first article in this series, we highlighted the WordPress mission to democratize publishing. WordPress introduced a tool to independent and small publishers who did not have the resources of the larger publishing platforms. Access to a free content management system to create websites has empowered thousands of people to find their voice online. [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9139:\"\n<p>In our <a href=\"https://wordpress.org/news/2019/10/becoming-better-digital-citizens-through-open-source/\">first article in this series</a>, we highlighted the WordPress mission to democratize publishing. WordPress introduced a tool to independent and small publishers who did not have the resources of the larger publishing platforms. Access to a free content management system to create websites has empowered thousands of people to find their voice online. People have been able to share their enthusiasm for hobbies, causes, products and much more. Through these different voices, we can encourage understanding, spark creativity, and create environments where collaboration can happen. But as we build more digital communities, it&#8217;s easy to forget that online safety is a group effort.</p>\n\n\n\n<p>Digital literacy is also part of being a good digital citizen, but it’s more than just being able to do basic actions with your mobile device. Digital literacy refers to the range of skills needed to do online research, set up web accounts, and find solutions for fixing devices among other things. But to be able to enjoy more of the digital world safely and responsibly &#8211; to be a good digital citizen &#8211; we need to be able to:&nbsp;</p>\n\n\n\n<ul><li><strong>navigate</strong> vast amounts of information without getting overwhelmed;</li><li><strong>evaluate</strong> a variety of perspectives;</li><li><strong>connect</strong> with people with respect and empathy;</li><li><strong>create</strong>, curate and share information.</li></ul>\n\n\n\n<p>We will need our offline analytical and social skills to make that happen.&nbsp;</p>\n\n\n\n<h2>Here’s some best practices our community members have shared!</h2>\n\n\n\n<h3>Online or offline, let empathy be your compass</h3>\n\n\n\n<p>The hardest part about all of this is the anonymity of online interactions. Without that face-to-face feedback of saying something mean to another person&#8217;s face, it&#8217;s easy to upset the people you&#8217;re trying to communicate with.</p>\n\n\n\n<p>In our daily lives in the offline world, comments may be more tempered and slow to anger  in disagreements. Visual cues will help us determine how a remark is perceived. That, in turn, helps us adjust our behaviour Action, reaction, it’s how we learn best.</p>\n\n\n\n<p>Online, however, the experience is different. A keyboard does not protest if we type angry, hate-filled messages. A screen does not show any signs of being hurt. The lack of physical human presence combined with the anonymity of online alter-egos can be a formula for disrespectful and unfriendly behavior. It is good to remind ourselves that behind the avatars, nicknames and handles are real people. The same empathy we display in our in-person interactions should apply online as well.</p>\n\n\n\n<h3>Critically evaluate your sources&nbsp;</h3>\n\n\n\n<p>We all have times when we consume information with limited research and fact-checking. For some of us, it feels like there’s no time to research and compare sources when faced by a sea of online information. For others, there may be uncertainty about where to start and what to consider. But, without a bit of skepticism and analytical thinking, we run the risk of creating narrow or incorrect understanding of the world. With a little effort we can curb the sharing of fake news and biased information, particularly on topics that are new to us or that we’re not familiar with.</p>\n\n\n\n<p>Misinformation can spread like wildfire. Ask these simple questions to evaluate information online:&nbsp;</p>\n\n\n\n<ul><li>who is the source of the information?</li><li>is it plausible?</li><li>is the information fact or just an opinion?</li></ul>\n\n\n\n<h3>Own our content</h3>\n\n\n\n<p>In this day and age, it’s never been easier to just copy, paste and publish somebody else&#8217;s content. That doesn’t mean that we should! Publishing content that is not truly ‘yours’ in wording and tone of voice is unlikely to build a connection with the right audience. But, just as important, using someone else’s content may breach copyright and potentially intellectual property rights. </p>\n\n\n\n<p>For more information about intellectual property, <a href=\"https://www.wipo.int/about-ip/en/\">visit the World Intellectual Property Organization website</a>.</p>\n\n\n\n<h3>Don’t breeze past terms and conditions</h3>\n\n\n\n<p>Have you ever signed up for an online service (to help you distribute published content or accept payments) that was offered at no cost? In our fast-paced digital lives, we tend to want to breeze past terms and conditions or warning information and often miss important information about what will happen with our data. </p>\n\n\n\n<p>When we are given a contract on paper, we tend to read and re-read it, giving it a greater priority of our time. We may send it to other people for a second opinion or seek further review before signing. Remarkably, we rarely do that with online agreements. As a result, we may be putting our online privacy and security at risk. (WordPress uses a <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/gpl-primer/\">GPL license</a>, and only collects usage data that we never share ever.).</p>\n\n\n\n<h3>Keep your website safe and healthy</h3>\n\n\n\n<p>If you would like to own your voice online, you also need to protect your reputation by securing your publishing platform. Websites can face security attacks. Hackers may seek to obtain access through insecure settings, outdated plugins and old software versions, and in extreme cases can try to scam your visitors. And leaking customer data, may even lead to legal consequences.</p>\n\n\n\n<p>On top of that, websites ‘flagged’ for security issues, can lead to high bounce rates and eventual loss of search rankings. This can all affect how search engines rate or even block your site. </p>\n\n\n\n<p>Good practices to keep your website safe include changing your safe password regularly, installing security software, an SSL certificate and keeping the core software, plugins and themes up to date. This will not guarantee that you will keep hackers out, so always keep several backups of your site, ideally both offline and online.</p>\n\n\n\n<p>That is just website security in a tiny nutshell. If you would like to learn more about keeping websites safe, you may want to check out some of these resources and many more videos at WordPress.tv.</p>\n\n\n\n<h2>Join in and help make the web a better place!</h2>\n\n\n\n<p>As part of Digital Citizenship Week, we would like to encourage you to learn and share skills with your colleagues, friends and family members. That way, we all become more informed of potential issues and how to reduce the risks. Together we can make it easier to navigate the web more effectively and securely!</p>\n\n\n\n<h3>Additional resources</h3>\n\n\n\n<h4>Site health check</h4>\n\n\n\n<p>WordPress 5.2 introduced pages in the admin interface to help users run health checks on their sites. They can be found under the Tools menu.</p>\n\n\n\n<h4>Security and SSL&nbsp;</h4>\n\n\n\n<ul><li><a href=\"https://wordpress.tv/2019/01/23/victor-santoyo-security-and-ssl-whats-the-difference/\">Video recording of a presentation by Victor Santoyo about website security and SSL</a>.</li><li><a href=\"https://wordpress.tv/2017/08/31/jessica-gardner-ssl-what-it-is-how-to-do-it-and-why-you-should-care/\">Video recording of a presentation by Jessica Gardner about why you should care about SSL and how to use it.</a></li><li><a href=\"https://wordpress.tv/2018/02/03/adam-warner-the-personal-and-website-security-mindset/\">Video recording of a presentation by Adam Warner about the personal and website security mindset</a>.</li><li><a href=\"https://wordpress.tv/2018/07/05/miriam-schwab-content-security-policies-a-whole-new-way-of-securing-your-website-that-no-one-knows/\">Video recording of a presentation by Miriam Schwab about content security policies</a>.</li><li><a href=\"https://en.support.wordpress.com/https-ssl/\">More information about SSL licenses on WordPress.com</a>.</li><li><a href=\"https://wordpress.org/plugins/search/SSL\">SSL plugins in the WordPress plugin repository</a>.</li></ul>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p><a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>, <a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a>, <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>,  <a href=\'https://profiles.wordpress.org/muzhdekad/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>muzhdekad</a> <a href=\'https://profiles.wordpress.org/alexdenning/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>alexdenning</a>,&nbsp;<a href=\'https://profiles.wordpress.org/natashadrewnicki/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>natashadrewnicki</a>, <a href=\'https://profiles.wordpress.org/oglekler/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>oglekler</a>, and Daria Gogoleva.</p>\n\n\n\n<p><br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7386\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 5.2.4 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2019/10/wordpress-5-2-4-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2019 21:54:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7372\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:366:\"WordPress 5.2.4 is now available! This security release fixes 6 security issues. WordPress versions 5.2.3 and earlier are affected by these bugs, which are fixed in version 5.2.4. Updated versions of WordPress 5.1 and earlier are also available for any users who have not yet updated to 5.2. Security Updates Props to&#160;Evan Ricafort&#160;for finding an [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jake Spurlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3652:\"\n<p><a href=\"https://wordpress.org/wordpress-5.2.4.zip\">WordPress 5.2.4</a> is now available! This security release fixes 6 security issues.<br><br>WordPress versions 5.2.3 and earlier are affected by these bugs, which are fixed in version 5.2.4. Updated versions of WordPress 5.1 and earlier are also available for any users who have not yet updated to 5.2.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<ul><li>Props to&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://evanricafort.com/\">Evan Ricafort</a>&nbsp;for finding an issue where stored XSS (cross-site scripting) could be added via the Customizer.</li><li>Props to&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://codesymphony.co/\">J.D. Grimes</a>&nbsp;who found and disclosed a method of viewing unauthenticated posts.</li><li>Props to&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://weston.ruter.net/\">Weston Ruter</a>&nbsp;for finding a way to create a stored XSS to inject Javascript into style tags.</li><li>Props to David Newman for highlighting a method to poison the cache of JSON GET requests via the Vary: Origin header.</li><li>Props to <a href=\"http://eugenekolo.com/\">Eugene Kolodenker</a> who found a server-side request forgery in the way that URLs are validated.</li><li>Props to Ben Bidner of the WordPress Security Team who discovered issues related to referrer validation in the admin.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing</a> the vulnerabilities, which gave us time to fix them before WordPress sites could be attacked.</p>\n\n\n\n<p>For more info, browse the full list of changes on Trac or check out the Version&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://wordpress.org/support/wordpress-version/version-5-2-4/\">5.2.4 documentation page</a>.<br><br>WordPress 5.2.4 is a short-cycle security release. The next major release will be&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://make.wordpress.org/core/5-3/\">version 5.3</a>.<br><br>You can <a href=\"https://wordpress.org/wordpress-5.2.4.zip\">download WordPress 5.2.4</a> or visit <code>Dashboard → Updates</code> and click <code>Update Now</code>. Sites that support automatic background updates have already started to update automatically.<br><br>In addition to the security researchers mentioned above, thank you to everyone who contributed to WordPress 5.2.4:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/darthhexx\">darthhexx</a>, <a href=\"https://profiles.wordpress.org/davidbinda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, and <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7372\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:54:\"\n		\n		\n				\n		\n				\n		\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Becoming Better Digital Citizens Through Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2019/10/becoming-better-digital-citizens-through-open-source/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Oct 2019 07:31:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:24:\"digital citizenship week\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:11:\"open source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7353\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:340:\"The WordPress Project is on a mission to democratize publishing. As WordPress empowers more people to participate in the digital space, we have the opportunity to make sure that everyone can participate safely and responsibly. Today marks the start of Digital Citizenship Week. We are going to share how open source can be used as [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Yvette Sonneveld\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9031:\"\n<p>The WordPress Project is on a mission to democratize publishing. As WordPress empowers more people to participate in the digital space, we have the opportunity to make sure that everyone can participate safely and responsibly. Today marks the start of Digital Citizenship Week. We are going to share how open source can be used as a tool for learners (regardless of age) to practice and model the essential parts of being a good digital citizen.</p>\n\n\n\n<h2>What is digital citizenship?</h2>\n\n\n\n<p>The digital landscape constantly changes and this affects the way we use the internet. New platforms emerge, people find different ways to spread information, communities form, grow and fade away every day. The concepts and practice of promoting civil discourse, critical thinking and safe use of the internet still remain central. And that is exactly what digital citizenship is about.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“Put simply, digital citizenship is a lot like citizenship in any other community &#8212; the knowledge of how to engage with digital communities you’re part of in a way that is thoughtful, safe, and makes appropriate use of the technology.”</em></p><cite><em>Josepha Haden, Executive Director WordPress Project</em></cite></blockquote>\n\n\n\n<h2>Who is a digital citizen?</h2>\n\n\n\n<p>Digital Citizenship is for all age groups. Anyone who uses the internet on a computer, mobile device or a TV is a digital citizen. You don’t have to be tech-savvy already, maybe you are taking your first steps with technology. Digital Citizenship Week is a chance to reflect together on our impact on the digital world. It can help us to make our consumption more considered and our interaction friendlier. It enables us to make a positive difference to those around us.</p>\n\n\n\n<p>All of us can strive (or learn) to become better digital citizens. It can be affected by the access those teaching have had to digital skills and good practice. Adult education classes and community tech hubs play a part in basic tech skill development. Unfortunately, these are not always accessible to those in less populated geographic locations.&nbsp;</p>\n\n\n\n<p>Open source communities like WordPress already make a difference in encouraging the principles of digital citizenship, from sharing tech skills to improving security knowledge. They give people an opportunity to learn alongside their peers and many of the resources are available regardless of location, resources, or skills.</p>\n\n\n\n<ul><li>WordPress Meetups &#8212; locally-based, informal learning sessions &#8212; typically take place monthly on weekday evenings. </li><li>WordCamps are city-based conferences that take place in cities worldwide. These events usually last 1-3 days and are organized and run by volunteers.</li><li>The talks are also recorded and made available on the free, online library <a href=\"https://wordpress.tv/\">WordPress.tv</a>. These can be watched from the comfort of your own home, office or during informal get-togethers.</li></ul>\n\n\n\n<h3>What can we do as part of the WordPress community?</h3>\n\n\n\n<p>Digital citizenship skills, like many other skills needed in this tech-focused world, should be kept up-to-date. Open source communities offer unparalleled opportunities to do this and are available in countries across the world. As part of our role as members of WordPress and other communities, we can pass on such skills to others. For instance by working alongside people who have had limited experience of digital skills. Or by finding new ways of making this knowledge sharing fun and accessible.&nbsp;</p>\n\n\n\n<p><strong>Here are just a few of the ways we do and can make an even greater difference:</strong></p>\n\n\n\n<ul><li>as bloggers and writers, we can be more aware of how to write content responsibly.</li><li>as designers, we can think more about how different people will view, understand and respond to the designs and visuals we create or use.</li><li>as developers, we can build systems that make it easier for all users to find information and accomplish their goals, to be secure while visiting our sites, and to model good security and practice.</li><li>as community members, through organizing events like <a href=\"https://www.meetup.com/pro/wordpress\">WordPress Meetups</a> and <a href=\"https://central.wordcamp.org\">WordCamps</a>, we are helping equip those who may not have had access to digital literacy or who lack the confidence to put it into place or share with their family and colleagues. Through these events, the online videos and other resources on <a href=\"https://wordpress.tv/\">WordPress.tv</a> and through the <a href=\"https://make.wordpress.org/\">Make WordPress teams</a>, we are already making a difference every day.</li><li>as individuals, the way we communicate in the community and listen to each other is equally important. This is a vital part of how we grow and model positive digital citizens. Through growing our positive digital skills and a better understanding of online etiquette and challenges, we can make our immediate and wider digital world a more positive and useful environment.</li><li>making it easier to document and share knowledge.</li><li>emphasizing how skills learned within the community can be used in other parts of our digital lives.</li><li>creating and becoming ambassadors for Digital Citizenship.</li></ul>\n\n\n\n<p>You can also get involved with specific events that have grown out of the wider WordPress project, championed by enthusiasts and those wanting to improve specific digital skills and bring wider benefits to society.</p>\n\n\n\n<h2>Community-driven Events</h2>\n\n\n\n<p>For example, <a href=\"https://wptranslationday.org\"><strong>WordPress Translation Day</strong></a> in 2019 had 81 local events worldwide. Running for 24-hours, individuals with language skills translated aspects of the platform into multiple languages with a total of 1181 projects modified. An amazing 221 new translators joined on the day. In addition, there was a live stream with talks, panel discussions, interviews, and sharing of tips and skills to help others learn how to translate. Volunteers are now planning the event for 2020!<br><br><a href=\"https://make.wordpress.org/polyglots/2019/03/01/global-wordpress-translation-day-4-is-coming/\">Stories of how people came together for WordPress Translation Day</a></p>\n\n\n\n<figure class=\"wp-block-embed-wordpress-tv wp-block-embed is-type-video wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe width=\'632\' height=\'395\' src=\'https://videopress.com/embed/aiWzATgh?hd=0\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script>\n</div><figcaption><br>Interviews with some of the participants from a previous WordPress Translation Day giving a flavour of how volunteers developed this event.</figcaption></figure>\n\n\n\n<p><strong>Do_action days</strong> are WordPress events organized in local communities to help give charities their own online presence. Each event involves members of the local WordPress community, planning and building new websites for selected local organizations in one day. Some take place in a working day, others on weekends.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-embed-wordpress-tv wp-block-embed is-type-video wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe width=\'632\' height=\'356\' src=\'https://videopress.com/embed/xVwMpeOd?hd=0\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script>\n</div><figcaption>Volunteer Tess Coughlan-Allen talking about how people came together for the first do_action in Europe to help local charities. </figcaption></figure>\n\n\n\n<p><a href=\"https://doaction.org\">Find the next do_action hackaton nearby your home town.</a></p>\n\n\n\n<h3>Improving digital skills through WordPress</h3>\n\n\n\n<figure class=\"wp-block-embed-wordpress-tv wp-block-embed is-type-video wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe width=\'632\' height=\'356\' src=\'https://videopress.com/embed/vwE1MunB?hd=0\' frameborder=\'0\' allowfullscreen></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1435166243\'></script>\n</div><figcaption><br>In this video clip, Josepha talks about the Digital Divide and what current technological trends mean for it in the future. She explores what it takes to be literate in the digital landscape and how WordPress can be used to build and perfect those skills.</figcaption></figure>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a> for researching and writing this article and <a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a> for her supporting work in this series.<br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7353\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:51:\"\n		\n		\n				\n		\n				\n		\n\n		\n				\n								\n										\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 5.3 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2019/10/wordpress-5-3-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Oct 2019 20:58:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=7312\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:357:\"WordPress 5.3 Beta 3 is now available! This software is still in development,&#160;so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version. You can test the WordPress 5.3 beta in two ways: Try the&#160;WordPress Beta Tester&#160;plugin (choose the “bleeding edge nightlies” option) [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Francesca Marano\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3765:\"\n<p>WordPress 5.3 Beta 3 is now available!</p>\n\n\n\n<p><strong>This software is still in development,</strong>&nbsp;so we don’t recommend you run it on a production site. Consider setting up a test site to play with the new version.</p>\n\n\n\n<p>You can test the WordPress 5.3 beta in two ways:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.3-beta3.zip\">download the beta here</a>&nbsp;(zip). </li></ul>\n\n\n\n<p>WordPress 5.3 is slated for release on&nbsp;<a href=\"https://make.wordpress.org/core/5-3/\">November 12, 2019</a>, and we need your help to get there.</p>\n\n\n\n<p>Thanks to the testing and feedback from everyone who tested <a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-2/\">beta 2</a> (and&nbsp;<a href=\"https://wordpress.org/news/2019/09/wordpress-5-3-beta-1/\">beta 1</a>) over&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F01%2F2019..10%2F08%2F2019&amp;milestone=5.3&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">60 tickets have been closed</a>&nbsp;in the past week. </p>\n\n\n\n<h2>Some highlights </h2>\n\n\n\n<ul><li>Fixes and enhancements in the admin interface changes introduced in previous 5.3 beta releases.</li><li>Wording changes in login screen (<a href=\"https://core.trac.wordpress.org/ticket/43037\">#43037</a>).</li><li>Improved accessibility in media upload modal (<a href=\"https://core.trac.wordpress.org/ticket/47149\">#47149</a>).</li><li>Changes in the way the new error handling with images works (<a href=\"https://core.trac.wordpress.org/ticket/48200\">#48200</a>).</li><li>MediaElement.js has been updated from 4.2.6 to 4.2.13 (<a href=\"https://core.trac.wordpress.org/ticket/46681\">#46681</a>). The script is now also being loaded in the footer again. This fixes a regression that happened two years ago, so might be worth noting (<a href=\"https://core.trac.wordpress.org/ticket/44484\">#44484</a>).</li><li>Update to the REST API media endpoint to allow resuming of uploads (<a href=\"https://core.trac.wordpress.org/ticket/47987\">#47987</a>).</li></ul>\n\n\n\n<p>In addition to these, Beta 3 landed a number of small consistency and polish changes to the REST API, including an improvement to the permissions check used when editing comments, a fix for post type controller caching edge cases, and most importantly, the ability to use the _embed parameter to access the full data for a post using the /wp/v2/search endpoint.</p>\n\n\n\n<h2>Developer notes</h2>\n\n\n\n<p>WordPress 5.3 has lots of refinements to polish the developer experience. To keep up, subscribe to the&nbsp;<a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a>&nbsp;and pay special attention to the&nbsp;<a href=\"https://make.wordpress.org/core/tag/5-3+dev-notes/\">developer notes</a>&nbsp;tag for updates on those and other changes that could affect your products.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev/\">Help us translate WordPress into more than 100 languages</a>!</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>&nbsp;where you can also find a list of&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"7312\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 04 Nov 2019 17:19:14 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Sat, 02 Nov 2019 21:15:00 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(200938,'_transient_timeout_jpp_li_db34d495d86d8659d5df7e6af7b05c91','1572915725','no'),(200939,'_transient_jpp_li_db34d495d86d8659d5df7e6af7b05c91','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (27.72.97.222)\";s:17:\"seconds_remaining\";i:3153;s:16:\"blocked_attempts\";s:5:\"13370\";s:6:\"expire\";i:1572915725;}','no'),(145099,'db_upgraded','','yes'),(200923,'_transient_timeout_jetpack_file_data_7.8','1575418142','no');
INSERT INTO `wprl_options` VALUES (200924,'_transient_jetpack_file_data_7.8','a:51:{s:32:\"212a162108f1dc20cc6c768d5b47d4f2\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d3576702faeb399eb47ad20f586c3804\";a:14:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"55409a5f8388b8d33e2350ef80de3ea3\";a:14:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e914e6d31cb61f5a9ef86e1b9573430e\";a:14:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:81:\"Let visitors use a WordPress.com, Twitter, Facebook, or Google account to comment\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f1b8c61705fb18eb8c8584c9f9cdffd9\";a:14:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:81:\"Add a customizable contact form to any post or page using the Jetpack Form Block.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:214:\"contact, form, grunion, feedback, submission, contact form, email, feedback, contact form plugin, custom form, custom form plugin, form builder, forms, form maker, survey, contact by jetpack, contact us, forms free\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4fca6eb23a793155d69fdb119a094926\";a:14:{s:4:\"name\";s:9:\"Copy Post\";s:11:\"description\";s:77:\"Enable the option to copy entire posts and pages, including tags and settings\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"7.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:15:\"copy, duplicate\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cfdac01e3c3c529f93a8f49edef1f5db\";a:14:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4b9137ecf507290743735fb1f94535df\";a:14:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:88:\"Adds options for CSS preprocessor use, disabling the theme\'s CSS, or custom image width.\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"95d75b38d76d2ee1b5b537026eadb8ff\";a:14:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f1bb571a95c5de1e6adaf9db8567c039\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"822f9ef1281dace3fb7cc420c77d24e0\";a:14:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"c167275f926ef0eefaec9a679bd88d34\";a:14:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"58cbd4585a74829a1c88aa9c295f3993\";a:14:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d4a35eabc948caefad71a0d3303b95c8\";a:14:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7b0c670bc3f8209dc83abb8610e23a89\";a:14:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:74:\"Use the LaTeX markup language to write mathematical equations and formulas\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b00e4e6c109ce6f77b5c83fbaaaead4c\";a:14:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:137:\"Speed up your site and create a smoother viewing experience by loading images as visitors scroll down the screen, instead of all at once.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:23:\"Appearance, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:150:\"mobile, theme, fast images, fast image, image, lazy, lazy load, lazyload, images, lazy images, thumbnail, image lazy load, lazy loading, load, loading\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"8e46c72906c928eca634ac2c8b1bc84f\";a:14:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2df2264a07aff77e0556121e33349dce\";a:14:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0337eacae47d30c946cb9fc4e5ece649\";a:14:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cb5d81445061b89d19cb9c7754697a39\";a:14:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ea0fbbd64080c81a90a784924603588c\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5c53fdb3633ba3232f60180116900273\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"40b97d9ce396339d3e8e46b833a045b5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0739df64747f2d02c140f23ce6c19cd8\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"c54bb0a65b39f1316da8632197a88a4e\";a:14:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:118:\"Jetpack’s downtime monitoring will continuously watch your site, and alert you the moment that downtime is detected.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:123:\"monitor, uptime, downtime, monitoring, maintenance, maintenance mode, offline, site is down, site down, down, repair, error\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cc013f4c5480c7bdc1e7edb2f410bf3c\";a:14:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b3b34928b1e549bb52f866accc0450c5\";a:14:{s:4:\"name\";s:9:\"Asset CDN\";s:11:\"description\";s:154:\"Jetpack’s Site Accelerator loads your site faster by optimizing your images and serving your images and static files from our global network of servers.\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"6.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:160:\"site accelerator, accelerate, static, assets, javascript, css, files, performance, cdn, bandwidth, content delivery network, pagespeed, combine js, optimize css\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"714284944f56d6936a40f3309900bc8e\";a:14:{s:4:\"name\";s:9:\"Image CDN\";s:11:\"description\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:171:\"photon, photo cdn, image cdn, speed, compression, resize, responsive images, responsive, content distribution network, optimize, page speed, image optimize, photon jetpack\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"348754bc914ee02c72d9af445627784c\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"041704e207c4c59eea93e0499c908bff\";a:14:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"26e6cb3e08a6cfd0811c17e7c633c72c\";a:14:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:151:\"Enabling brute force protection will prevent bots and hackers from attempting to log in to your website with common username and password combinations.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:173:\"security, jetpack protect, secure, protection, botnet, brute force, protect, login, bot, password, passwords, strong passwords, strong password, wp-login.php,  protect admin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"915a504082f797395713fd01e0e2e713\";a:14:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:128:\"Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:220:\"facebook, jetpack publicize, twitter, tumblr, linkedin, social, tweet, connections, sharing, social media, automated, automated sharing, auto publish, auto tweet and like, auto tweet, facebook auto post, facebook posting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"a7b21cc562ee9ffa357bba19701fe45b\";a:14:{s:4:\"name\";s:20:\"Progressive Web Apps\";s:11:\"description\";s:85:\"Speed up and improve the reliability of your site using the latest in web technology.\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"18\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:26:\"manifest, pwa, progressive\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"9243c1a718566213f4eaf3b44cf14b07\";a:14:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:360:\"related, jetpack related posts, related posts for wordpress, related posts, popular posts, popular, related content, related post, contextual, context, contextual related posts, related articles, similar posts, easy related posts, related page, simple related posts, free related posts, related thumbnails, similar, engagement, yet another related posts plugin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"583e4cda5596ee1b28a19cde33f438be\";a:14:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:87:\"Enhanced search, powered by Elasticsearch, a powerful replacement for WordPress search.\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:110:\"search, elastic, elastic search, elasticsearch, fast search, search results, search performance, google search\";s:12:\"plan_classes\";s:8:\"business\";}s:32:\"15346c1f7f2a5f29d34378774ecfa830\";a:14:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"72a0ff4cfae86074a7cdd2dcd432ef11\";a:14:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:120:\"Add Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:229:\"share, sharing, sharedaddy, social buttons, buttons, share facebook, share twitter, social media sharing, social media share, social share, icons, email, facebook, twitter, linkedin, pinterest, pocket, social widget, social media\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"bb8c6c190aaec212a7ab6e940165af4d\";a:14:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:177:\"Shortcodes are WordPress-specific markup that let you add media from popular sites. This feature is no longer necessary as the editor now handles media embeds rather gracefully.\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"1abd31fe07ae4fb0f8bb57dc24592219\";a:14:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:82:\"Generates shorter links so you can have more space to write on social media sites.\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cae5f097f8d658e0b0ae50733d7c6476\";a:14:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:11:\"Recommended\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e9b8318133b2f95e7906cedb3557a87d\";a:14:{s:4:\"name\";s:14:\"Secure Sign On\";s:11:\"description\";s:63:\"Allow users to log in to this site using WordPress.com accounts\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"17e66a12031ccf11d8d45ceee0955f05\";a:14:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"346cf9756e7c1252acecb9a8ca81a21c\";a:14:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:58:\"Let visitors subscribe to new posts and comments via email\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4f84d218792a6efa06ed6feae09c4dd5\";a:14:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ca086af79d0d9dccacc934ccff5b4fd7\";a:14:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"43c24feb7c541c376af93e0251c1a261\";a:14:{s:4:\"name\";s:20:\"Backups and Scanning\";s:11:\"description\";s:100:\"Protect your site with daily or real-time backups and automated virus scanning and threat detection.\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:386:\"backup, cloud backup, database backup, restore, wordpress backup, backup plugin, wordpress backup plugin, back up, backup wordpress, backwpup, vaultpress, backups, off-site backups, offsite backup, offsite, off-site, antivirus, malware scanner, security, virus, viruses, prevent viruses, scan, anti-virus, antimalware, protection, safe browsing, malware, wp security, wordpress security\";s:12:\"plan_classes\";s:27:\"personal, business, premium\";}s:32:\"b9396d8038fc29140b499098d2294d79\";a:14:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"afe184082e106c1bdfe1ee844f98aef3\";a:14:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:101:\"Save on hosting storage and bandwidth costs by streaming fast, ad-free video from our global network.\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:118:\"video, videos, videopress, video gallery, video player, videoplayer, mobile video, vimeo, youtube, html5 video, stream\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"44637d43460370af9a1b31ce3ccec0cd\";a:14:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"694c105a5c3b659acfcddad220048d08\";a:14:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:49:\"Provides additional widgets for use on your site.\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ae15da72c5802d72f320640bad669561\";a:14:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";s:12:\"plan_classes\";s:17:\"premium, business\";}}','no'),(201183,'_transient_timeout_jetpack_sync_callables_await','1572915111','no'),(201184,'_transient_jetpack_sync_callables_await','1572915051.12','no'),(201024,'_transient_timeout_jetpack_jitm_a35c4fe87e80ecac93808863ec81368','1572913375','no'),(201025,'_transient_jetpack_jitm_a35c4fe87e80ecac93808863ec81368','a:2:{i:0;O:8:\"stdClass\":9:{s:7:\"content\";O:8:\"stdClass\":5:{s:7:\"message\";s:56:\"Looking to add features and functionality to your store?\";s:4:\"icon\";s:11:\"woocommerce\";s:4:\"list\";a:0:{}s:11:\"description\";s:48:\"Browse 300+ official extensions for WooCommerce.\";s:7:\"classes\";s:0:\"\";}s:3:\"CTA\";O:8:\"stdClass\":4:{s:7:\"message\";s:17:\"Browse Extensions\";s:4:\"hook\";s:0:\"\";s:9:\"newWindow\";b:1;s:7:\"primary\";b:1;}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:23:\"wccom_plugin_extensions\";s:13:\"feature_class\";s:23:\"wccom_plugin_extensions\";s:7:\"expires\";i:3628800;s:13:\"max_dismissal\";i:2;s:15:\"activate_module\";N;}s:18:\"last_response_time\";i:1572913075;}','no'),(201026,'_transient_timeout_jpp_li_aa8568047ba430587ab08970ce1c8ae7','1572916578','no'),(201027,'_transient_jpp_li_aa8568047ba430587ab08970ce1c8ae7','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (148.66.142.161)\";s:17:\"seconds_remaining\";i:3502;s:16:\"blocked_attempts\";s:5:\"13371\";s:6:\"expire\";i:1572916578;}','no'),(201030,'_transient_timeout_jetpack_plugin_data','1572999501','no'),(201031,'_transient_jetpack_plugin_data','O:8:\"stdClass\":26:{s:4:\"name\";s:24:\"Jetpack by WordPress.com\";s:4:\"slug\";s:7:\"jetpack\";s:7:\"version\";s:3:\"7.8\";s:6:\"author\";s:44:\"<a href=\"https://jetpack.com\">Automattic</a>\";s:14:\"author_profile\";s:41:\"https://profiles.wordpress.org/automattic\";s:12:\"contributors\";a:95:{s:10:\"automattic\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/automattic\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/687b3bf96c41800814e3b93766444283?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Automattic\";}s:12:\"adamkheckler\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/adamkheckler\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c853a00c574118ef2bc49e3916f73ce3?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Adam Heckler\";}s:5:\"aduth\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/aduth\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/a7ce947b6c1e30a4857068628ada24e1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Andrew Duthie\";}s:5:\"akirk\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/akirk\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/cec9269f2c7f43871230ff701544d03f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"Alex Kirk\";}s:8:\"allendav\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/allendav\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/1fbe2cbf81d138800009924725439779?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Allen Snook\";}s:12:\"alternatekev\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/alternatekev\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/0875b2fe8e3fbb843ccaa9a171df3eb3?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"alternatekev\";}s:4:\"andy\";a:3:{s:7:\"profile\";s:35:\"https://profiles.wordpress.org/andy\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/35756b05226763c9539679ccec26a1c0?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Andy Skelton\";}s:8:\"annezazu\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/annezazu\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/0eff7149d8c78b242f4652e9ceb8f798?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"annezazu\";}s:9:\"apeatling\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/apeatling\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/bb29d699b5cba218c313b61aa82249da?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Andy Peatling\";}s:6:\"azaozz\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/azaozz\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/4e84843ebff0918d72ade21c6ee7b1e4?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Andrew Ozz\";}s:6:\"batmoo\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/batmoo\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/16aeda409d2a00b51ac4c5058a3a8435?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Mohammad Jangda\";}s:5:\"barry\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/barry\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/b0b357b291ac72bc7da81b4d74430fe6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Barry\";}s:10:\"beaulebens\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/beaulebens\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/205e460b479e2e5b48aec07710c08d50?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Beau Lebens\";}s:8:\"blobaugh\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/blobaugh\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/f25f324a47a1efdf7a745e0b2e3c878f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:22:\"Ben Lobaugh (blobaugh)\";}s:5:\"cainm\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/cainm\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/377c3dd307043ed31bbc3a1b54416532?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Michael Cain\";}s:4:\"cena\";a:3:{s:7:\"profile\";s:35:\"https://profiles.wordpress.org/cena\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9e1aa4efffca7b0e290651a8b8652f23?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:4:\"Cena\";}s:6:\"cfinke\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/cfinke\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/a1378d3f89a30d5daa8d7cca0bd80574?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"Christopher Finke\";}s:15:\"chaselivingston\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/chaselivingston\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/78e4429c957d6570ae1bea73a53c61ee?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Chase Livingston\";}s:9:\"chellycat\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/chellycat\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/6f6b2c0b4d24e9ee0c8d5519405d80e7?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"Michelle Langston\";}s:11:\"clickysteve\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/clickysteve\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/d32c5250fa45b147517f293235417136?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"clickysteve\";}s:7:\"csonnek\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/csonnek\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/561be467af56cefa58e02782b7ac7510?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:7:\"csonnek\";}s:15:\"danielbachhuber\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/danielbachhuber\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/a304ad0084a78fe52f6b93e00871754e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Daniel Bachhuber\";}s:11:\"davoraltman\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/davoraltman\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/16acbc88e7aa65104ed289d736cb9698?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Davor\";}s:12:\"daniloercoli\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/daniloercoli\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c6f539874bcd98210c786b4314488753?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"daniloercoli\";}s:12:\"designsimply\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/designsimply\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/eed0e8d62f562daf038f182de7f1fd42?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"designsimply\";}s:4:\"dllh\";a:3:{s:7:\"profile\";s:35:\"https://profiles.wordpress.org/dllh\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/bf6e5c80b9290ad30ace0a50e292268d?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:26:\"Daryl L. L. Houston (dllh)\";}s:10:\"drawmyface\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/drawmyface\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/4988305772319fb9bc8fce0a7acb3aa1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:3:\"Dan\";}s:6:\"dsmart\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/dsmart\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/b43fa2242b1ea9cc8618c6ceb2085f54?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Derek Smart\";}s:5:\"dzver\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/dzver\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/2addc7815c4783cfc7b9c81e4a34bfa7?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"dzver\";}s:8:\"ebinnion\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/ebinnion\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/e8d172977181f0f3e105a2f4553cccc2?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Eric Binnion\";}s:10:\"eliorivero\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/eliorivero\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/cb2e9e4d63e271d04ee4e5753d24586f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Elio Rivero\";}s:4:\"enej\";a:3:{s:7:\"profile\";s:35:\"https://profiles.wordpress.org/enej\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7daee6cd5624d7c0562987b422106813?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Enej Bajgoric\";}s:6:\"eoigal\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/eoigal\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/72dd449e5e79e046c1c09ed8712b525a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Eoin Gallagher\";}s:14:\"erania-pinnera\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/erania-pinnera\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/94ea5fe7f174036e72ad87d9b71fd6e0?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:4:\"Stef\";}s:8:\"ethitter\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/ethitter\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9d6b3768833114ff0294ecbf51ab606c?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Erick Hitter\";}s:6:\"gcorne\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/gcorne\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/5b02a5101f4a3f37631f1fd1ef4111a9?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"Gregory Cornelius\";}s:15:\"georgestephanis\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/georgestephanis\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/8c46364c1cdf20827ceb25f901cdc0aa?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"George Stephanis\";}s:7:\"gibrown\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/gibrown\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/915ee4efbd21f12b55b6362cf4f7c42f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:20:\"Greg Ichneumon Brown\";}s:10:\"goldsounds\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/goldsounds\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/a1675bd7a3e8c9d6540de217d168da14?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"goldsounds\";}s:3:\"hew\";a:3:{s:7:\"profile\";s:34:\"https://profiles.wordpress.org/hew\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/d5d395826be4645d2d7bc13aad97db83?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:3:\"Hew\";}s:9:\"hugobaeta\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/hugobaeta\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/0218e99cde7283d859ea46a21e744319?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Hugo Baeta\";}s:14:\"hypertextranch\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/hypertextranch\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/25e2ecf9b520e06d71e47ab083924300?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"hypertextranch\";}s:13:\"iammattthomas\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/iammattthomas\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/e6b19bb6ff09fcf884305e8fa41d698b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:20:\"Matt (Thomas) Miklic\";}s:7:\"iandunn\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/iandunn\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/d0e2ea89fb62350b1304c62eeeaf24b6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:8:\"Ian Dunn\";}s:4:\"jblz\";a:3:{s:7:\"profile\";s:35:\"https://profiles.wordpress.org/jblz\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/d30bee96f3769826fca389e15d81c51d?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Jeff Bowen\";}s:12:\"jeffgolenski\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/jeffgolenski\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/b3b97f6f025689b058de143b489ec268?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"jeffgolenski\";}s:7:\"jeherve\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/jeherve\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/93b13aced520a1a531e642b7c1c17bff?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Jeremy Herve\";}s:8:\"jenhooks\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/jenhooks\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/790618302648bd80fa8a55497dfd8ac8?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:6:\"Jen H.\";}s:5:\"jenia\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/jenia\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/30845a8785e716017911fff45af5c9fe?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:5:\"Jenia\";}s:13:\"jessefriedman\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/jessefriedman\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c4ce641ce5c4680349fa59eb8c2909cb?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"jessefriedman\";}s:3:\"jgs\";a:3:{s:7:\"profile\";s:34:\"https://profiles.wordpress.org/jgs\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/0ad9eb4e67bac47214cef94d46d1318f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Greg Stewart\";}s:7:\"jkudish\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/jkudish\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/8fac9a834778de5a3b7b26fb28cff956?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Joey Kudish\";}s:6:\"jmdodd\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/jmdodd\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/6a7c997edea340616bcc6d0fe03f65dd?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Jennifer M. Dodd\";}s:7:\"joanrho\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/joanrho\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/b63cdd6494ea0b492f2054458368e6c5?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:7:\"joanrho\";}s:15:\"johnjamesjacoby\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/johnjamesjacoby\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7a2644fb53ae2f7bfd7143b504af396c?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:17:\"John James Jacoby\";}s:7:\"jshreve\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/jshreve\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9ea5b460afb2859968095ad3afe4804b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Justin Shreve\";}s:6:\"keoshi\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/keoshi\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/eac8e3135a186cb2176120c2ed71e644?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Filipe Varela\";}s:4:\"koke\";a:3:{s:7:\"profile\";s:35:\"https://profiles.wordpress.org/koke\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/5b415e3c9c245e557af9f580eeb8760a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Jorge Bernal\";}s:7:\"kraftbj\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/kraftbj\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/6e238edcb0664c975ccb9e8e80abb307?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Brandon Kraft\";}s:12:\"lancewillett\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/lancewillett\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/47976847383b324bd35e228a91eb1a0f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Lance Willett\";}s:9:\"lschuyler\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/lschuyler\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/38d5bbe8cd50b492a02f889c55628fb3?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Lisa Schuyler\";}s:7:\"macmanx\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/macmanx\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/190cf13c9cd358521085af13615382d5?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"James Huff\";}s:10:\"martinremy\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/martinremy\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/33b3e384f5a150015a5a981402983ca3?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"martinremy\";}s:4:\"matt\";a:3:{s:7:\"profile\";s:35:\"https://profiles.wordpress.org/matt\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/767fc9c115a1b989744c755db47feb60?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Matt Mullenweg\";}s:6:\"matveb\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/matveb\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/3f8389957d0c59bb0bd5433e86b53a19?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Matias Ventura\";}s:9:\"mattwiebe\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/mattwiebe\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/3f7cda86b0d471afad79a0b5423d1677?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Matt Wiebe\";}s:11:\"maverick3x6\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/maverick3x6\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/85e5d0140e8f88005ff5e88f8ab18b66?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Jeff Golenski\";}s:4:\"mcsf\";a:3:{s:7:\"profile\";s:35:\"https://profiles.wordpress.org/mcsf\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/7e89b8105f7e05afa2872e411d3f76ad?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Miguel Fonseca\";}s:8:\"mdawaffe\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/mdawaffe\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/94e778f51997baa3f47ecaca4e819090?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:24:\"Michael Adams (mdawaffe)\";}s:15:\"michael-arestad\";a:3:{s:7:\"profile\";s:46:\"https://profiles.wordpress.org/michael-arestad\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/e8b4c8470f61ff15b9c98f7a1556c16b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Michael Arestad\";}s:8:\"migueluy\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/migueluy\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/c2f03d35da02e6dced303b48e3c895ea?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Miguel Lezama\";}s:9:\"mikeyarce\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/mikeyarce\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/39640559442fe2250231aca4c0102d0c?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Mikey Arce\";}s:4:\"mkaz\";a:3:{s:7:\"profile\";s:35:\"https://profiles.wordpress.org/mkaz\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/560eddebcdf845e77003dacd11eec960?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:18:\"Marcus Kazmierczak\";}s:11:\"nancythanki\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/nancythanki\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/642411e0e1cd2d36a8a09570c457884a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"nancythanki\";}s:10:\"nickmomrik\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/nickmomrik\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/6b24381ebfed7b19ebec751322aa8cc1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Nick Momrik\";}s:8:\"obenland\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/obenland\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/1d185e40270139d70c2c50e7219b06ab?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"Konstantin Obenland\";}s:6:\"oskosk\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/oskosk\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/5e1a8fd2bbd05c5cc3dec35e05d888c2?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:3:\"Osk\";}s:5:\"pento\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/pento\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/1ad9e5c98d81c6815a65dab5b6e1f669?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:15:\"Gary Pendergast\";}s:11:\"professor44\";a:3:{s:7:\"profile\";s:42:\"https://profiles.wordpress.org/professor44\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/0934fa64cc323b6a2e10dc37fc33fa64?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Jesse Friedman\";}s:14:\"rachelsquirrel\";a:3:{s:7:\"profile\";s:45:\"https://profiles.wordpress.org/rachelsquirrel\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/6923d9b3ce6f8a9eb43abd605cf8b0e5?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"rachelsquirrel\";}s:6:\"rdcoll\";a:3:{s:7:\"profile\";s:37:\"https://profiles.wordpress.org/rdcoll\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/8d7e1bdd8aa5db45c113d61bfd86086f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:12:\"Rich Collier\";}s:10:\"ryancowles\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/ryancowles\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/4626de7797aada973c1fb22dfe0e5109?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:11:\"Ryan Cowles\";}s:13:\"richardmuscat\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/richardmuscat\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/0011ac3115b33c6051d6706ca3adb47e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Richard Muscat\";}s:10:\"richardmtl\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/richardmtl\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9d4b77080c699629e846d3637b3a661c?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:19:\"Richard Archambault\";}s:13:\"roccotripaldi\";a:3:{s:7:\"profile\";s:44:\"https://profiles.wordpress.org/roccotripaldi\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/a78c747ecc4e8d1936e8d33080ae1803?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Rocco Tripaldi\";}s:12:\"samhotchkiss\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/samhotchkiss\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/a8cae2d8534e900a162cf44414660e1f?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Sam Hotchkiss\";}s:10:\"scarstocea\";a:3:{s:7:\"profile\";s:41:\"https://profiles.wordpress.org/scarstocea\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/e7b26de48e76498cff880abca1eed8da?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:16:\"Stefan Carstocea\";}s:7:\"sdquirk\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/sdquirk\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/6637858a5d4b31943507c637497d53c1?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Stephen Quirk\";}s:8:\"stephdau\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/stephdau\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/5b8d74a711e183850bd70ccdd440d15e?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:25:\"Stephane Daury (stephdau)\";}s:8:\"tmoorewp\";a:3:{s:7:\"profile\";s:39:\"https://profiles.wordpress.org/tmoorewp\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/9466b647a74493be4701076792be3f44?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"Tim Moore\";}s:5:\"tyxla\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/tyxla\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/cf58282ee2e95590510aaa24b734c186?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Marin Atanasov\";}s:12:\"viper007bond\";a:3:{s:7:\"profile\";s:43:\"https://profiles.wordpress.org/viper007bond\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/b51d05d023485f5ef7bcd2a3b6dec207?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Alex Mills\";}s:5:\"westi\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/westi\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/5b3b5ce04dd402124aba53142b3e47f6?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:14:\"Peter Westwood\";}s:5:\"yoavf\";a:3:{s:7:\"profile\";s:36:\"https://profiles.wordpress.org/yoavf\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/ae98ec38ec28f129a33a424e5eba5769?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:10:\"Yoav Farhi\";}s:7:\"zinigor\";a:3:{s:7:\"profile\";s:38:\"https://profiles.wordpress.org/zinigor\";s:6:\"avatar\";s:88:\"https://secure.gravatar.com/avatar/0c4a76adae06042e5e6f39eaf3c2658a?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:13:\"Igor Zinovyev\";}}s:8:\"requires\";s:3:\"5.1\";s:6:\"tested\";s:5:\"5.2.4\";s:12:\"requires_php\";s:3:\"5.6\";s:6:\"rating\";i:78;s:7:\"ratings\";a:5:{i:5;i:893;i:4;i:128;i:3;i:77;i:2;i:66;i:1;i:279;}s:11:\"num_ratings\";i:1443;s:15:\"support_threads\";i:176;s:24:\"support_threads_resolved\";i:162;s:15:\"active_installs\";i:5000000;s:12:\"last_updated\";s:21:\"2019-10-01 1:09pm GMT\";s:5:\"added\";s:10:\"2011-01-20\";s:8:\"homepage\";s:19:\"https://jetpack.com\";s:13:\"download_link\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.8.zip\";s:11:\"screenshots\";a:4:{i:1;a:2:{s:3:\"src\";s:60:\"https://ps.w.org/jetpack/assets/screenshot-1.png?rev=2079476\";s:7:\"caption\";s:170:\"Keep hackers out with brute force attack protection, malware scanning, spam filtering, and downtime monitoring. Secure your site data with on-demand backups and restores.\";}i:2;a:2:{s:3:\"src\";s:60:\"https://ps.w.org/jetpack/assets/screenshot-2.png?rev=2079476\";s:7:\"caption\";s:107:\"Load pages faster, and serve your images and static files from our massive global content delivery network.\";}i:3;a:2:{s:3:\"src\";s:60:\"https://ps.w.org/jetpack/assets/screenshot-3.png?rev=2079476\";s:7:\"caption\";s:90:\"Customize your website with professionally-designed WordPress themes, blocks, and widgets.\";}i:4;a:2:{s:3:\"src\";s:60:\"https://ps.w.org/jetpack/assets/screenshot-4.png?rev=2079476\";s:7:\"caption\";s:81:\"Promote your newest posts, pages, and products across your social media channels.\";}}s:4:\"tags\";a:5:{s:6:\"backup\";s:6:\"backup\";s:7:\"jetpack\";s:7:\"jetpack\";s:13:\"related-posts\";s:13:\"related posts\";s:8:\"security\";s:8:\"security\";s:13:\"wordpress-com\";s:13:\"WordPress.com\";}s:8:\"versions\";a:100:{s:5:\"2.0.7\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.2.0.7.zip\";s:5:\"2.1.5\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.2.1.5.zip\";s:5:\"2.2.8\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.2.2.8.zip\";s:5:\"2.3.8\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.2.3.8.zip\";s:5:\"2.4.5\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.2.4.5.zip\";s:5:\"2.5.3\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.2.5.3.zip\";s:5:\"2.6.4\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.2.6.4.zip\";s:5:\"2.7.3\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.2.7.3.zip\";s:5:\"2.8.3\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.2.8.3.zip\";s:5:\"2.9.4\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.2.9.4.zip\";s:5:\"3.0.4\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.0.4.zip\";s:5:\"3.1.3\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.1.3.zip\";s:5:\"3.2.3\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.2.3.zip\";s:5:\"3.3.4\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.3.4.zip\";s:5:\"3.4.4\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.4.4.zip\";s:5:\"3.5.4\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.5.4.zip\";s:5:\"3.6.2\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.6.2.zip\";s:5:\"3.7.3\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.7.3.zip\";s:5:\"3.8.3\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.8.3.zip\";s:5:\"3.9.7\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.3.9.7.zip\";s:5:\"4.0.4\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.0.4.zip\";s:5:\"4.1.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.1.1.zip\";s:3:\"4.2\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.4.2.zip\";s:5:\"4.2.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.2.1.zip\";s:5:\"4.2.2\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.2.2.zip\";s:3:\"4.3\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.4.3.zip\";s:5:\"4.3.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.3.1.zip\";s:5:\"4.3.2\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.3.2.zip\";s:3:\"4.4\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.4.4.zip\";s:5:\"4.4.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.4.1.zip\";s:5:\"4.4.2\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.4.2.zip\";s:3:\"4.5\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.4.5.zip\";s:3:\"4.6\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.4.6.zip\";s:3:\"4.7\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.4.7.zip\";s:5:\"4.7.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.7.1.zip\";s:3:\"4.8\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.4.8.zip\";s:5:\"4.8.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.8.1.zip\";s:5:\"4.8.2\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.4.8.2.zip\";s:3:\"4.9\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.4.9.zip\";s:3:\"5.0\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.5.0.zip\";s:3:\"5.1\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.5.1.zip\";s:3:\"5.2\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.5.2.zip\";s:5:\"5.2.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.5.2.1.zip\";s:3:\"5.3\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.5.3.zip\";s:3:\"5.4\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.5.4.zip\";s:3:\"5.5\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.5.5.zip\";s:5:\"5.5.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.5.5.1.zip\";s:3:\"5.6\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.5.6.zip\";s:5:\"5.6.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.5.6.1.zip\";s:3:\"5.7\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.5.7.zip\";s:5:\"5.7.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.5.7.1.zip\";s:3:\"5.8\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.5.8.zip\";s:3:\"5.9\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.5.9.zip\";s:3:\"6.0\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.6.0.zip\";s:3:\"6.1\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.6.1.zip\";s:5:\"6.1.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.6.1.1.zip\";s:3:\"6.2\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.6.2.zip\";s:5:\"6.2.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.6.2.1.zip\";s:3:\"6.3\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.6.3.zip\";s:5:\"6.3.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.6.3.1.zip\";s:5:\"6.3.2\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.6.3.2.zip\";s:5:\"6.3.3\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.6.3.3.zip\";s:3:\"6.4\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.6.4.zip\";s:5:\"6.4.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.6.4.1.zip\";s:5:\"6.4.2\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.6.4.2.zip\";s:3:\"6.5\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.6.5.zip\";s:3:\"6.6\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.6.6.zip\";s:5:\"6.6.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.6.6.1.zip\";s:3:\"6.7\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.6.7.zip\";s:3:\"6.8\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.6.8.zip\";s:5:\"6.8.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.6.8.1.zip\";s:3:\"6.9\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.6.9.zip\";s:3:\"7.0\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.0.zip\";s:5:\"7.0.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.0.1.zip\";s:3:\"7.1\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.1.zip\";s:5:\"7.1.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.1.1.zip\";s:3:\"7.2\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.2.zip\";s:5:\"7.2.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.2.1.zip\";s:7:\"7.2.1.1\";s:58:\"https://downloads.wordpress.org/plugin/jetpack.7.2.1.1.zip\";s:3:\"7.3\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.3.zip\";s:7:\"7.3.0.1\";s:58:\"https://downloads.wordpress.org/plugin/jetpack.7.3.0.1.zip\";s:5:\"7.3.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.3.1.zip\";s:7:\"7.3.1.1\";s:58:\"https://downloads.wordpress.org/plugin/jetpack.7.3.1.1.zip\";s:3:\"7.4\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.4.zip\";s:5:\"7.4.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.4.1.zip\";s:3:\"7.5\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.5.zip\";s:7:\"7.5.0.1\";s:58:\"https://downloads.wordpress.org/plugin/jetpack.7.5.0.1.zip\";s:5:\"7.5.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.5.1.zip\";s:5:\"7.5.2\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.5.2.zip\";s:5:\"7.5.3\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.5.3.zip\";s:3:\"7.6\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.6.zip\";s:3:\"7.7\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.7.zip\";s:5:\"7.7.1\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.7.1.zip\";s:5:\"7.7.2\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.7.7.2.zip\";s:3:\"7.8\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.8.zip\";s:8:\"7.8-beta\";s:59:\"https://downloads.wordpress.org/plugin/jetpack.7.8-beta.zip\";s:8:\"7.9-beta\";s:59:\"https://downloads.wordpress.org/plugin/jetpack.7.9-beta.zip\";s:9:\"7.9-beta2\";s:60:\"https://downloads.wordpress.org/plugin/jetpack.7.9-beta2.zip\";s:9:\"7.9-beta3\";s:60:\"https://downloads.wordpress.org/plugin/jetpack.7.9-beta3.zip\";s:5:\"trunk\";s:50:\"https://downloads.wordpress.org/plugin/jetpack.zip\";}s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=1791404\";s:4:\"high\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404\";}s:18:\"author_block_count\";i:0;s:19:\"author_block_rating\";i:78;}','no'),(201014,'_transient_timeout_jetpack_plugin_api_action_links_refresh','1572999843','no'),(201015,'_transient_jetpack_plugin_api_action_links_refresh','1572913443','no'),(200795,'_transient_timeout_jpp_li_a528224b660d0a5b90e03ef4964e3385','1572913234','no'),(200796,'_transient_jpp_li_a528224b660d0a5b90e03ef4964e3385','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (47.91.225.68)\";s:17:\"seconds_remaining\";i:3514;s:16:\"blocked_attempts\";s:5:\"13354\";s:6:\"expire\";i:1572913234;}','no'),(200802,'_transient_timeout_jpp_li_971db086c0596dc3b89707cf0f9521b6','1572913494','no'),(200803,'_transient_jpp_li_971db086c0596dc3b89707cf0f9521b6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (34.80.25.171)\";s:17:\"seconds_remaining\";i:3308;s:16:\"blocked_attempts\";s:5:\"13356\";s:6:\"expire\";i:1572913494;}','no'),(200804,'_transient_timeout_jpp_li_92a1a6f1d946cada94ca58e21afb9cf0','1572913613','no'),(200805,'_transient_jpp_li_92a1a6f1d946cada94ca58e21afb9cf0','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (5.196.204.173)\";s:17:\"seconds_remaining\";i:3249;s:16:\"blocked_attempts\";s:5:\"13357\";s:6:\"expire\";i:1572913613;}','no'),(200807,'_transient_timeout_jpp_li_9513fb5465c68922f80c5e80a5cc0b73','1572914057','no'),(200808,'_transient_jpp_li_9513fb5465c68922f80c5e80a5cc0b73','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (52.225.135.63)\";s:17:\"seconds_remaining\";i:3375;s:16:\"blocked_attempts\";s:5:\"13358\";s:6:\"expire\";i:1572914057;}','no'),(200810,'_transient_timeout_jpp_li_fdd7a636d97f01c4fba776bcb53c5980','1572914222','no'),(200811,'_transient_jpp_li_fdd7a636d97f01c4fba776bcb53c5980','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (45.119.82.54)\";s:17:\"seconds_remaining\";i:3404;s:16:\"blocked_attempts\";s:5:\"13359\";s:6:\"expire\";i:1572914222;}','no'),(200814,'_transient_timeout_jpp_li_bd5ed53e79ae211ea8e44cd5d89c3a55','1572913875','no'),(200815,'_transient_jpp_li_bd5ed53e79ae211ea8e44cd5d89c3a55','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (123.31.31.12)\";s:17:\"seconds_remaining\";i:2889;s:16:\"blocked_attempts\";s:5:\"13360\";s:6:\"expire\";i:1572913875;}','no'),(200817,'_transient_timeout_jpp_li_147b8e861392cd5ca01fe23880740e88','1572914805','no'),(200818,'_transient_jpp_li_147b8e861392cd5ca01fe23880740e88','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:43:\"This IP is currently blocked (165.22.214.2)\";s:17:\"seconds_remaining\";i:3580;s:16:\"blocked_attempts\";s:5:\"13361\";s:6:\"expire\";i:1572914805;}','no'),(200820,'_transient_timeout_jpp_li_4a451cb2711a2daa612437d3c15a3397','1572914745','no'),(200821,'_transient_jpp_li_4a451cb2711a2daa612437d3c15a3397','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (95.85.34.10)\";s:17:\"seconds_remaining\";i:3473;s:16:\"blocked_attempts\";s:5:\"13362\";s:6:\"expire\";i:1572914745;}','no'),(200823,'_transient_timeout_jpp_li_9a87cb57f180bd20aeac89123d3a020d','1572914823','no'),(200824,'_transient_jpp_li_9a87cb57f180bd20aeac89123d3a020d','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (173.208.143.202)\";s:17:\"seconds_remaining\";i:3387;s:16:\"blocked_attempts\";s:5:\"13363\";s:6:\"expire\";i:1572914823;}','no'),(200831,'_transient_timeout_jpp_li_0f81cb3265014e5480cb8a0a29f51333','1572915335','no'),(200832,'_transient_jpp_li_0f81cb3265014e5480cb8a0a29f51333','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:46:\"This IP is currently blocked (192.185.130.216)\";s:17:\"seconds_remaining\";i:3584;s:16:\"blocked_attempts\";s:5:\"13365\";s:6:\"expire\";i:1572915335;}','no'),(200838,'_transient_timeout_jpp_li_ab12fa43721e1e834c888f6247ed7bc6','1572915403','no'),(200839,'_transient_jpp_li_ab12fa43721e1e834c888f6247ed7bc6','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (35.196.221.14)\";s:17:\"seconds_remaining\";i:3484;s:16:\"blocked_attempts\";s:5:\"13366\";s:6:\"expire\";i:1572915403;}','no'),(200841,'_transient_timeout_jpp_li_2631b9e781799cd4e54e8fd45bc52076','1572915727','no'),(200842,'_transient_jpp_li_2631b9e781799cd4e54e8fd45bc52076','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (118.69.174.108)\";s:17:\"seconds_remaining\";i:3597;s:16:\"blocked_attempts\";s:5:\"13367\";s:6:\"expire\";i:1572915727;}','no'),(200844,'_transient_timeout_jpp_li_595f667c99f7ba56f70ae1a27934a93f','1572915805','no'),(200845,'_transient_jpp_li_595f667c99f7ba56f70ae1a27934a93f','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:42:\"This IP is currently blocked (45.77.253.5)\";s:17:\"seconds_remaining\";i:3545;s:16:\"blocked_attempts\";s:5:\"13368\";s:6:\"expire\";i:1572915805;}','no'),(200735,'_transient_timeout_external_ip_address_35.198.243.204','1573511791','no'),(200736,'_transient_external_ip_address_35.198.243.204','198.46.81.23','no'),(200571,'_transient_timeout_plugin_slugs','1572999843','no'),(200572,'_transient_plugin_slugs','a:17:{i:0;s:35:\"backupwordpress/backupwordpress.php\";i:1;s:24:\"bb-plugin/fl-builder.php\";i:2;s:33:\"classic-editor/classic-editor.php\";i:3;s:37:\"download-manager/download-manager.php\";i:4;s:47:\"file-manager-advanced/file_manager_advanced.php\";i:5;s:25:\"gp-premium/gp-premium.php\";i:6;s:35:\"insert-headers-and-footers/ihaf.php\";i:7;s:19:\"jetpack/jetpack.php\";i:8;s:29:\"pdf-embedder/pdf_embedder.php\";i:9;s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";i:10;s:29:\"use-any-font/use-any-font.php\";i:11;s:27:\"woocommerce/woocommerce.php\";i:12;s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";i:13;s:45:\"woocommerce-services/woocommerce-services.php\";i:14;s:70:\"woo-shipment-tracking-order-tracking/woocommerce-shipment-tracking.php\";i:15;s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";i:16;s:24:\"wordpress-seo/wp-seo.php\";}','no'),(200578,'_transient_timeout_wc_upgrade_notice_3.7.1','1572988006','no'),(200579,'_transient_wc_upgrade_notice_3.7.1','','no'),(200800,'_transient_jpp_li_803d9a3bf65dbaeeda3e722285864750','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:44:\"This IP is currently blocked (51.68.214.134)\";s:17:\"seconds_remaining\";i:3304;s:16:\"blocked_attempts\";s:5:\"13355\";s:6:\"expire\";i:1572913311;}','no'),(200799,'_transient_timeout_jpp_li_803d9a3bf65dbaeeda3e722285864750','1572913311','no'),(199768,'_transient_timeout_jetpack_a8c_data','1572974321','no'),(199769,'_transient_jetpack_a8c_data','a:4:{s:4:\"a12s\";i:974;s:9:\"countries\";i:72;s:9:\"languages\";i:91;s:16:\"featured_plugins\";a:4:{i:0;s:11:\"woocommerce\";i:1;s:14:\"wp-super-cache\";i:2;s:14:\"wp-job-manager\";i:3;s:15:\"co-authors-plus\";}}','no'),(199777,'_site_transient_browser_86181b6ed9a3da9f5af01abb0007299b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"78.0.3904.70\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(199778,'_site_transient_timeout_php_check_fe52cf8c54c56c0fc14cfc3a8545dcce','1573492721','no'),(199779,'_site_transient_php_check_fe52cf8c54c56c0fc14cfc3a8545dcce','a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(200294,'_transient_timeout_jetpack_is_single_user','1572940692','no'),(200295,'_transient_jetpack_is_single_user','2','no'),(201143,'_transient_timeout_jetpack_psh_status','1572915167','no'),(201144,'_transient_jetpack_psh_status','1','no'),(197122,'_transient_timeout_external_ip_address_35.200.149.78','1573234492','no'),(197123,'_transient_external_ip_address_35.200.149.78','198.46.81.23','no'),(197519,'_transient_timeout_wc_customer_bought_product_51b1e23dc9631e46d3d90c6e430c00e6','1575276419','no'),(197520,'_transient_wc_customer_bought_product_51b1e23dc9631e46d3d90c6e430c00e6','a:2:{s:7:\"version\";s:10:\"1571319046\";s:5:\"value\";a:0:{}}','no'),(187601,'_transient_timeout_wc_customer_bought_product_02899af8cb3853cc424860cd7cb3edec','1573211497','no'),(187602,'_transient_wc_customer_bought_product_02899af8cb3853cc424860cd7cb3edec','a:2:{s:7:\"version\";s:10:\"1570039467\";s:5:\"value\";a:0:{}}','no'),(200858,'_transient_timeout_jpp_li_fac1d4c5759d55aab3b9f7974f5c235b','1572915838','no'),(200859,'_transient_jpp_li_fac1d4c5759d55aab3b9f7974f5c235b','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (136.243.76.240)\";s:17:\"seconds_remaining\";i:3445;s:16:\"blocked_attempts\";s:5:\"13369\";s:6:\"expire\";i:1572915838;}','no'),(199815,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1572931155','no'),(199816,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1572887955','no'),(199817,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1572931155','no'),(199818,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/11/2019-annual-survey/\'>2019 Annual Survey</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://poststatus.com/matt-mullenweg-state-of-the-word-2019/\'>Post Status: Matt Mullenweg’s State of the Word, 2019</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/11/2019-annual-survey/\'>WordPress.org blog: 2019 Annual Survey</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/boldgrid-joins-forces-with-w3-edge-acquires-w3-total-cache-plugin\'>WPTavern: BoldGrid Joins Forces with W3 Edge, Acquires W3 Total Cache Plugin</a></li><li><a class=\'rsswidget\' href=\'https://www.wpbeginner.com/showcase/best-video-hosting-sites-for-bloggers-marketers-and-businesses/\'>7 Best Video Hosting Sites for Bloggers, Marketers, and Businesses</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/11/the-month-in-wordpress-october-2019/\'>WordPress.org blog: The Month in WordPress: October 2019</a></li><li><a class=\'rsswidget\' href=\'https://blog.akismet.com/2019/10/31/akismet-plugin-4-1-3/\'>Akismet: Version 4.1.3 of the Akismet WordPress Plugin is Now Available</a></li></ul></div>','no'),(200970,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(199892,'_transient_timeout_wc_related_183','1572998695','no'),(199893,'_transient_wc_related_183','a:1:{s:51:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=183\";a:3:{i:0;s:3:\"151\";i:1;s:2:\"89\";i:2;s:2:\"95\";}}','no'),(200221,'_transient_timeout_external_ip_address_35.240.182.126','1573500895','no'),(200222,'_transient_external_ip_address_35.240.182.126','198.46.81.23','no'),(197775,'_transient_timeout_wc_related_89','1572975642','no'),(197776,'_transient_wc_related_89','a:1:{s:50:\"limit=4&exclude_ids%5B0%5D=0&exclude_ids%5B1%5D=89\";a:3:{i:0;s:2:\"95\";i:1;s:3:\"151\";i:2;s:3:\"183\";}}','no'),(197773,'_transient_timeout_wc_customer_bought_product_098b6ff748362266adc9ab90704843b3','1575313703','no'),(197774,'_transient_wc_customer_bought_product_098b6ff748362266adc9ab90704843b3','a:2:{s:7:\"version\";s:10:\"1571319046\";s:5:\"value\";a:0:{}}','no'),(198076,'_transient_timeout_hmbkp_schedules','1573373079','no'),(198077,'_transient_hmbkp_schedules','a:2:{i:0;s:25:\"hmbkp_schedule_1534984429\";i:1;s:25:\"hmbkp_schedule_1534984430\";}','no'),(198236,'_transient_timeout_wc_customer_bought_product_9909526362af8d1e6b885ee810d16154','1575397584','no'),(198237,'_transient_wc_customer_bought_product_9909526362af8d1e6b885ee810d16154','a:2:{s:7:\"version\";s:10:\"1571319046\";s:5:\"value\";a:0:{}}','no'),(197621,'_transient_timeout_wc_customer_bought_product_ae4b153013aca91214130b9daaa63e9e','1575289841','no'),(197622,'_transient_wc_customer_bought_product_ae4b153013aca91214130b9daaa63e9e','a:2:{s:7:\"version\";s:10:\"1571319046\";s:5:\"value\";a:0:{}}','no'),(197753,'_transient_timeout_wc_customer_bought_product_8322ede3c1d2b6c12fb3f97d670437ee','1575312099','no'),(197754,'_transient_wc_customer_bought_product_8322ede3c1d2b6c12fb3f97d670437ee','a:2:{s:7:\"version\";s:10:\"1571319046\";s:5:\"value\";a:0:{}}','no'),(198323,'_transient_timeout_external_ip_address_35.240.196.150','1573416290','no'),(198324,'_transient_external_ip_address_35.240.196.150','198.46.81.23','no'),(200569,'_transient_timeout__woocommerce_helper_updates','1572944804','no'),(198183,'_transient_timeout_external_ip_address_35.200.161.138','1573387899','no'),(198184,'_transient_external_ip_address_35.200.161.138','198.46.81.23','no'),(197603,'_transient_wc_customer_bought_product_9e85e3cb5dbccd9256e98579c812b808','a:2:{s:7:\"version\";s:10:\"1571319046\";s:5:\"value\";a:0:{}}','no'),(200570,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1572901604;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(201004,'wc_stripe_show_style_notice','no','yes'),(201008,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";d:1572884643;s:8:\"response\";a:3:{s:24:\"bb-plugin/fl-builder.php\";O:8:\"stdClass\":8:{s:4:\"slug\";s:9:\"bb-plugin\";s:6:\"plugin\";s:24:\"bb-plugin/fl-builder.php\";s:11:\"new_version\";s:7:\"2.2.6.1\";s:3:\"url\";s:30:\"http://www.wpbeaverbuilder.com\";s:7:\"package\";s:0:\"\";s:6:\"tested\";s:5:\"5.2.4\";s:5:\"icons\";a:3:{s:2:\"1x\";s:72:\"http://remoterangler.com/wp-content/plugins/bb-plugin/img/beaver-128.png\";s:2:\"2x\";s:72:\"http://remoterangler.com/wp-content/plugins/bb-plugin/img/beaver-256.png\";s:7:\"default\";s:72:\"http://remoterangler.com/wp-content/plugins/bb-plugin/img/beaver-256.png\";}s:14:\"upgrade_notice\";s:61:\"Please subscribe to enable automatic updates for this plugin.\";}s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:4:\"uabb\";s:4:\"slug\";s:17:\"bb-ultimate-addon\";s:6:\"plugin\";s:39:\"bb-ultimate-addon/bb-ultimate-addon.php\";s:14:\"upgrade_notice\";s:59:\" Please activate your license to receive automatic updates.\";s:11:\"new_version\";s:6:\"1.23.1\";s:3:\"url\";s:120:\"https://www.ultimatebeaver.com/pricing/?utm_source=uabb-pro-dashboard&utm_medium=license-screen&utm_campaign=get-license\";s:7:\"package\";s:0:\"\";s:6:\"tested\";s:5:\"5.2.4\";s:5:\"icons\";a:3:{s:2:\"1x\";s:84:\"http://remoterangler.com/wp-content/plugins/bb-ultimate-addon/assets/images/uabb.svg\";s:2:\"2x\";s:84:\"http://remoterangler.com/wp-content/plugins/bb-ultimate-addon/assets/images/uabb.svg\";s:7:\"default\";s:84:\"http://remoterangler.com/wp-content/plugins/bb-ultimate-addon/assets/images/uabb.svg\";}}s:25:\"gp-premium/gp-premium.php\";O:8:\"stdClass\":14:{s:11:\"new_version\";s:5:\"1.8.3\";s:14:\"stable_version\";s:5:\"1.8.3\";s:4:\"name\";s:10:\"GP Premium\";s:4:\"slug\";s:10:\"gp-premium\";s:3:\"url\";s:59:\"https://generatepress.com/downloads/gp-premium/?changelog=1\";s:12:\"last_updated\";s:19:\"2019-11-04 10:53:48\";s:8:\"homepage\";s:47:\"https://generatepress.com/downloads/gp-premium/\";s:7:\"package\";s:198:\"https://generatepress.com/edd-sl/package_download/MTU3Mjk3MzY3ODpiZjY1MjVlMDkwNTAxYzg1ZDMyMjUxY2QxODUxYmMwODoyNTQ0MTpiN2Y3MTMwZTQwMTQ0YzM5MjE3YzgyZWQ4NDA1MTFmMTpodHRwQC8vcmVtb3RlcmFuZ2xlci5jb206MA==\";s:13:\"download_link\";s:198:\"https://generatepress.com/edd-sl/package_download/MTU3Mjk3MzY3ODpiZjY1MjVlMDkwNTAxYzg1ZDMyMjUxY2QxODUxYmMwODoyNTQ0MTpiN2Y3MTMwZTQwMTQ0YzM5MjE3YzgyZWQ4NDA1MTFmMTpodHRwQC8vcmVtb3RlcmFuZ2xlci5jb206MA==\";s:8:\"sections\";O:8:\"stdClass\":2:{s:11:\"description\";s:124:\"<p>GP Premium is one powerful plugin that includes all of our awesome add-ons, which you can turn on and off as needed.</p>\n\";s:9:\"changelog\";s:67937:\"<p><strong>(6/12/2019) - 1.8.3</strong></p>\n<ul>\n<li>Menu Plus: Use flexbox for center aligned nav with nav branding</li>\n<li>Menu Plus: Center overlay off canvas exit button on mobile</li>\n<li>Menu Plus: Add alt tag to sticky nav logo</li>\n<li>Menu Plus: Set generate_not_mobile_menu_media_query filter based on mobile menu breakpoint</li>\n<li>Sections: Remember when text tab is active</li>\n<li>Sections: Disable visual editor if turned off in profile</li>\n<li>Typography: Add generate_google_font_display filter</li>\n<li>WooCommerce: Fix single product sidebar layout metabox option</li>\n<li>WooCommerce: Reduce carousel thumbnail max-width to 100px to match new thumbnail sizes</li>\n</ul>\n<p><strong>(5/2/2019) - 1.8.2</strong></p>\n<ul>\n<li>Elements: Use Page Hero site title color for mobile header site title</li>\n<li>Menu Plus: Give mobile header site title more left spacing</li>\n<li>Menu Plus: Fix nav search icon in sticky navigation when using nav branding in Firefox</li>\n<li>Site Library: Show Site Library tab even if no sites exist</li>\n<li>Site Library: Show an error message in Site Library if no sites exist</li>\n<li>Typography: Remove reference to generate_get_navigation_location() function</li>\n<li>WooCommerce: Remove quantity field arrows when using quantity buttons in Firefox</li>\n<li>WooCommerce: Remove extra border when loading quantity buttons</li>\n<li>WooCommerce: Use get_price_html() is sticky add to cart panel</li>\n</ul>\n<p><strong>(4/24/2019) - 1.8.1</strong></p>\n<ul>\n<li>Menu Plus: Revert sticky nav duplicate ID fix due to Cyrillic script bug</li>\n</ul>\n<p><strong>(4/24/2019) - 1.8.0</strong></p>\n<ul>\n<li>Blog: Apply columns filter to masonry grid sizer</li>\n<li>Colors: Merge Footer Widgets and Footer controls in Color panel</li>\n<li>Colors: Remove edit_theme_options capability to Customizer controls (set by default)</li>\n<li>Disable Elements: Make sure mobile header is disabled when primary navigation is disabled</li>\n<li>Elements: Add content width option in Layout Element</li>\n<li>Elements: Fix mobile header logo when mobile menu toggled</li>\n<li>Elements: Add generate_page_hero_location filter</li>\n<li>Elements: Add generate_elements_show_object_ids filter to show IDs in Display Rule values</li>\n<li>Elements: Prevent merged header wrap from conflicting with Elementor controls</li>\n<li>Elements: Change Container tab name to Content</li>\n<li>Elements: Add woocommerce_share option to Hooks</li>\n<li>Elements: Improve WPML compatibility</li>\n<li>Elements: Improve Polylang compatibility</li>\n<li>Elements: Prevent PHP notices when adding taxonomy locations to non-existent archives</li>\n<li>Elements: Add generate_mobile_cart_items hook to hook list</li>\n<li>Elements: Add generate_element_post_id filter</li>\n<li>Elements: Escape HTML elements inside Element textarea</li>\n<li>Elements: Add Beaver Builder templates to the Display Rules</li>\n<li>Menu Plus: Add mobile header breakpoint option</li>\n<li>Menu Plus: Add off canvas overlay option</li>\n<li>Menu Plus: Add navigation as header option</li>\n<li>Menu Plus: Remove navigation logo option if navigation as header set</li>\n<li>Menu Plus: Add sticky navigation logo option</li>\n<li>Menu Plus: Allow site title in mobile header instead of logo</li>\n<li>Menu Plus: Add option to move exit button inside the off canvas panel</li>\n<li>Menu Plus: Change Slideout Navigation name to Off Canvas Panel</li>\n<li>Menu Plus: Only re-focus after slideout close on escape key</li>\n<li>Menu Plus: Give close slideout event a name so it can be removed</li>\n<li>Menu Plus: Remove invalid transition-delay</li>\n<li>Menu Plus: Improve slideout overlay transition</li>\n<li>Menu Plus: Add mobile open/close icons to GPP font</li>\n<li>Menu Plus: Allow dynamic widget classes in off canvas panel (fixes WC range slider widget issue)</li>\n<li>Menu Plus: Basic compatibility with future SVG icons</li>\n<li>Menu Plus: Prevent duplicate IDs when sticky navigation is cloned</li>\n<li>Secondary Nav: Add dropdown direction option</li>\n<li>Secondary Nav: Basic compatibility with future SVG icons</li>\n<li>Sections: Fix section editor issues in WP 5.0</li>\n<li>Sections: Show Better Font Awesome icon in editor</li>\n<li>Sites: Re-design UI</li>\n<li>Sites: Add option to activate as a module like all the other modules</li>\n<li>Sites: Don\'t show backup options button if no options exist</li>\n<li>Sites: Make JS action classes more specific to the site library</li>\n<li>Sites: Set mime types of content.xml and widgets.wie</li>\n<li>Spacing: Add header padding option for mobile</li>\n<li>Spacing: Add widget padding option for mobile</li>\n<li>Spacing: Add footer widgets padding option for mobile</li>\n<li>Spacing: Add content separator option</li>\n<li>Spacing: Apply mobile menu item width to mobile bar only</li>\n<li>WooCommerce: Add option for mini cart in the menu</li>\n<li>WooCommerce: Add option to open off overlay panel on add to cart</li>\n<li>WooCommerce: Add option to open sticky add to cart panel on single products</li>\n<li>WooCommerce: Add option to add +/- buttons to the quantity fields</li>\n<li>WooCommerce: Add option to show number of items in cart menu item</li>\n<li>WooCommerce: Add option to choose single product image area width</li>\n<li>WooCommerce: Add color options for price slider widget</li>\n<li>WooCommerce: Use CSS grid for the product archives</li>\n<li>WooCommerce: Horizontally align add to cart buttons</li>\n<li>WooCommerce: Re-design the cart widget</li>\n<li>WooCommerce: Tighten up product info spacing</li>\n<li>WooCommerce: Improve product tab design to look more like tabs</li>\n<li>WooCommerce: Simplify single product image display</li>\n<li>WooCommerce: Use flexbox for quantity/add to cart alignment</li>\n<li>WooCommerce: Improve rating star styles</li>\n<li>WooCommerce: Use product alignment setting for related/upsell products</li>\n<li>WooCommerce: Remove bottom margin from product image</li>\n<li>WooCommerce: Organize colors in the Customizer</li>\n<li>WooCommerce: Remove title attribute from menu cart item</li>\n<li>WooCommerce: Improve coupon field design</li>\n<li>WooCommerce: Improve result count/ordering styling</li>\n<li>WooCommerce: Add gap around WC single product images</li>\n<li>WooCommerce: Remove arrow from checkout button</li>\n<li>WooCommerce: Hide view cart link on add to cart click</li>\n<li>WooCommerce: Organize CSS</li>\n<li>Introduce in-Customizer shortcuts</li>\n<li>Add generate_disable_customizer_shortcuts filter</li>\n</ul>\n<p><strong>(2/22/2019) - 1.7.8</strong></p>\n<ul>\n<li>Sites: Prevent future compatibility issues with Elementor by removing automatic URL replacement</li>\n</ul>\n<p><strong>(12/17/2018) - 1.7.7</strong></p>\n<ul>\n<li>Sites: Fix failed content import in specific PHP versions</li>\n</ul>\n<p><strong>(12/13/2018) - 1.7.6</strong></p>\n<ul>\n<li>Elements: Hide Add New button when opening saved Element with no type</li>\n<li>Sections: Show page title in Gutenberg when Sections are active</li>\n<li>Sections: Fix relative image URLs inside the Section editor</li>\n<li>Sites: Fix failed content/widget import in WP 5.0.1/4.9.9</li>\n<li>Sites: Fix no access to WooCommerce setup wizard</li>\n</ul>\n<p><strong>(11/21/2018) - 1.7.5</strong></p>\n<ul>\n<li>Colors: Improve block editor button color preview</li>\n<li>Menu Plus: Mobile menu items hidden behind content with higher z-index when sticky</li>\n<li>Menu Plus: Prevent mobile menu from covering mobile toggle when sticky</li>\n<li>Menu Plus: Don\'t close mobile menu if # is the whole URL</li>\n</ul>\n<p><strong>(11/19/2018) - 1.7.4</strong></p>\n<ul>\n<li>Colors: Fix navigation live color preview issues</li>\n<li>Colors: Move navigation parent item title down in Customizer</li>\n<li>Elements: Allow slashes in hook names</li>\n<li>General: Fix smooth scroll anchor location on mobile (requires GP 2.2)</li>\n<li>Menu Plus: Use https for navigation microdata</li>\n<li>Menu Plus: Remove header-image class from navigation and mobile header logos</li>\n<li>Menu Plus: Add navigation search height support to mobile header and sticky nav</li>\n<li>Typography: Include block editor button in live preview</li>\n</ul>\n<p><strong>(10/29/2018) - 1.7.3</strong></p>\n<ul>\n<li>Blog: Allow masonry to be turned off using a boolean filter</li>\n<li>Blog: Fix load more button appearing when not needed</li>\n<li>Blog: Remove infinite scroll load more button from WooCommerce archives</li>\n<li>Blog: Prevent content width option from applying to columns</li>\n<li>Elements: Fix empty object fields when Post Archive is set</li>\n<li>Elements: Allow slashes in custom hook field</li>\n<li>Elements: Allow multiple layout elements per condition</li>\n<li>Elements: Allow 0 value in mobile padding options</li>\n<li>Elements: Prevent PHP notice if $post isn\'t an object</li>\n<li>Gutenberg: Add initial support for live preview spacing of Gutenberg blocks</li>\n<li>Menu Plus: Add menu-item-align-right class to slideout toggle</li>\n<li>Menu Plus: Fix JS error in slideout navigation when no menu is set</li>\n<li>Sites: Fix image shadow on hover</li>\n<li>Sites: Add message when no plugins are needed</li>\n<li>Sites: Update custom link URL in menu items</li>\n<li>Sites: Prevent PHP warning in PHP 7.3</li>\n<li>Sites: Add generate_sites_ignore_plugins filter</li>\n<li>Sites: Fix WooCommerce setup wizard conflict with Site Library</li>\n<li>Sites: Fix PHP notices during WooCommerce setup wizard</li>\n<li>Typography: Add support for H1-H3 bottom margin options</li>\n<li>WooCommerce: Add menu-item-align-right class to cart menu item</li>\n<li>WooCommerce: Fix multi column product spacing on mobile</li>\n</ul>\n<p><strong>(8/20/2018) - 1.7.2</strong></p>\n<ul>\n<li>Elements: Fix admin body class spaces</li>\n<li>General: Fix JS error in anchors when smooth scroll class not added</li>\n<li>General: Fix sticky navigation offset when using smooth scroll</li>\n<li>WooCommerce: Apply Elementor Pro WC columns fix to Elementor Pro widget only</li>\n<li>WooCommerce: Fix BlockUI issue</li>\n</ul>\n<p><strong>(8/15/2018) - 1.7.1</strong></p>\n<ul>\n<li>Elements: Fix PHP error in PHP 5.3</li>\n<li>Elements: Fix Choose Element not showing due to some third party plugins</li>\n</ul>\n<p><strong>(8/14/2018) - 1.7</strong></p>\n<p>This update introduces a new premium module called \"Elements\". Learn more <a href=\"https://generatepress.com/gp-premium-1-7/\" target=\"_blank\" rel=\"noopener\">here</a>.</p>\n<ul>\n<li>Blog: Prevent masonry container jump on load</li>\n<li>Blog: Change “Full” label to “Full Content”</li>\n<li>New: Elements module</li>\n<li>Elements: Header element (replaces the Page Header module)</li>\n<li>Elements: Hook element (replaces the Hooks module)</li>\n<li>Elements: Layout element</li>\n<li>Hooks: Replaced by Elements module</li>\n<li>Hooks: Move link to legacy hooks inside Elements area</li>\n<li>Import/Export: Re-write code</li>\n<li>Import/Export: Import activated modules</li>\n<li>Menu Plus: Fix slideout close button alignment/color issues</li>\n<li>Menu Plus: Fix slideout issue with relative main navigation CSS</li>\n<li>Menu Plus: Fix ul display inside slideout navigation widget</li>\n<li>Menu Plus: Change Slideout Navigation theme location label to Slideout Menu</li>\n<li>Menu Plus: Close slideout navigation when a link within it is clicked</li>\n<li>Menu Plus: Show slideout navigation theme location option after Primary</li>\n<li>Menu Plus: Improve a11y of slideout navigation</li>\n<li>Menu Plus: Add .site-wrapper class compatibility to sticky nav</li>\n<li>Menu Plus: Prepare offside.js for future button dropdown menu toggle</li>\n<li>Menu Plus: Add .slideout-exit class to close slideout</li>\n<li>Page Header: Replaced by Elements module</li>\n<li>Page Header: Move link to legacy Page Headers inside Elements area</li>\n<li>Page Header: Fix hentry Google Search Console errors</li>\n<li>Page Header: Fix clearing element issue</li>\n<li>Page Header: WPML fix in global locations</li>\n<li>Page Header: Prevent PHP notices within Elementor Library area</li>\n<li>Page Header: Fix retina logo issue (in new Elements module only)</li>\n<li>Page Header: Show original logo in sticky navigation (in new Elements module only)</li>\n<li>Page Header: Add mobile header logo option (in new Elements module only)</li>\n<li>Secondary Nav: Show theme location option after Primary</li>\n<li>Sections: Allow Sections when Gutenberg is activated</li>\n<li>Sections: Hide Gutenberg editor when Sections enabled</li>\n<li>Sections: Fix text domain issues</li>\n<li>Sections: Use regular checkbox for use sections</li>\n<li>Spacing: Add future support for sub-menu width option</li>\n<li>Sites: Fix .complete class conflicts</li>\n<li>Sites: Add GENERATE_DISABLE_SITE_LIBRARY constant</li>\n<li>Sites: Remove verified provider debug notice</li>\n<li>WooCommerce: Add shopping bag and shopping basket icon options to cart menu item</li>\n<li>WooCommerce: Fix WC error with non-product post types</li>\n<li>WooCommerce: Fix too many WC star issue</li>\n<li>WooCommerce: Add CSS for cart menu item in secondary nav</li>\n<li>WooCommerce: Add WC menu item location filter to mobile cart</li>\n<li>WooCommerce: Fix issue with disabling sale badge when set to overlay</li>\n<li>WooCommerce: Add option to disable/enable sale badge on single product pages</li>\n<li>WooCommerce: Fix my account icon on mobile</li>\n<li>General: Fix smooth scroll issues on mobile</li>\n<li>General: Improve overall smooth scroll functionality</li>\n<li>General: Add generate_smooth_scroll_elements filter</li>\n<li>General: Move GPP icons from Font Awesome to custom icons</li>\n<li>A11y: Add context to all “Contained” strings</li>\n</ul>\n<p><strong>(3/28/2018) - 1.6.2</strong></p>\n<ul>\n<li>Sites: Prevent PHP notice when Sites can\'t be reached</li>\n</ul>\n<p><strong>(3/28/2018) - 1.6.1</strong></p>\n<ul>\n<li>Blog: Fix infinite scroll masonry issues in Firefox</li>\n<li>General: Improve smooth scroll script</li>\n<li>Import/Export: Show modules to export if defined in wp-config.php</li>\n<li>Sites: Prevent PHP warnings if no Sites are found</li>\n<li>Sites: Add generate_disable_site_library filter to disable Site Library</li>\n<li>Sites: Improve page builder filter display</li>\n<li>Sites: Prevent duplicate site display after details button in preview clicked</li>\n<li>WooCommerce: Add missing icons if Font Awesome is turned off</li>\n</ul>\n<p><strong>(3/22/2018) - 1.6</strong></p>\n<ul>\n<li>New: Sites module</li>\n<li>Translations: Merge all translations into gp-premium text domain</li>\n<li>General: Add smooth scroll option</li>\n<li>General: Move batch processing files into library</li>\n<li>General: Add GPP icon set</li>\n<li>General: WPCS and PHPCS improvements</li>\n<li>Blog: Fix PHP 7.2 warning</li>\n<li>Blog: Fix Safari infinite scroll issues with srcset</li>\n<li>Blog: Refresh masonry on infinite scroll append</li>\n<li>Blog: Remove infinite scroll on 404 and no results pages</li>\n<li>Blog: Fix Yoast SEO breaking columns with certain settings</li>\n<li>Blog: Re-layout masonry on load</li>\n<li>Colors: Add slideout navigation color options</li>\n<li>Colors: Merge navigation + sub-navigation options into one section</li>\n<li>Import/Export: One click export and import</li>\n<li>Menu Plus: Re-build slideout navigation to use vanilla JS</li>\n<li>Menu Plus: Add slideout navigation widget area</li>\n<li>Menu Plus: Add close icon to slideout navigation</li>\n<li>Menu Plus: Set sticky nav ID on refresh if stuck</li>\n<li>Menu Plus: Allow WPML to modify Page Header select metabox</li>\n<li>Menu Plus: Re-build mobile header using flexbox</li>\n<li>Menu Plus: Use CSS for slideout navigation icon</li>\n<li>Menu Plus: Fix sticky navigation slide down in Safari</li>\n<li>Menu Plus: Add workaround for iOS sticky nav search issue</li>\n<li>Page Header: Improve Page Header metabox UI on smaller screens</li>\n<li>Page Header: Use author display name in template tag</li>\n<li>Page Header: Add generate_page_header_id filter</li>\n<li>Page Header: Fix vertical center issues in IE11</li>\n<li>Page Header: Remove flexibility.js for IE8 support</li>\n<li>Page Header: Fix GiveWP compatibility</li>\n<li>Secondary Navigation: Re-build CSS</li>\n<li>Sections: Disable Gutenberg if Sections are activated</li>\n<li>Sections: Add generate_sections_gutenberg_compatible filter</li>\n<li>Spacing: Fix one container widget padding preview in Customizer</li>\n<li>Typography: Add Slideout Navigation typography options</li>\n<li>WooCommerce: Clear up-sells when directly after entry content</li>\n<li>WooCommerce: Fix placeholder text cut off in Firefox</li>\n<li>WooCommerce: Use GPP icon set for cart menu item</li>\n<li>WooCommerce: Load .js in the footer</li>\n<li>Update Background Process library</li>\n<li>Clean up code license key activation code</li>\n<li>Remove verify.php</li>\n<li>Prevent PHP notice when saving empty license</li>\n<li>Add beta testing checkbox to license key area</li>\n</ul>\n<p><strong>(12/4/2017) - 1.5.6</strong></p>\n<ul>\n<li>Backgrounds: Make position control description translatable</li>\n<li>Blog: Fix disabled page featured images if post featured images are disabled</li>\n<li>Blog: Let WP handle featured image alt attributes</li>\n<li>Colors: Fix text domain</li>\n<li>Colors: Improve inconsistent live preview behavior</li>\n<li>Menu Plus: Prep desktop only slideout icon for GP 2.0</li>\n<li>Page Header: Allow unfiltered HTML in content if user is allowed</li>\n<li>Page Header: Only load CSS file if content is added</li>\n<li>Typography: Fix h5 font size not appearing in GP 2.0</li>\n</ul>\n<p><strong>(11/22/2017) - 1.5.5</strong></p>\n<ul>\n<li>Blog: Fix broken images while using Infinite Scroll in Safari</li>\n<li>Typography: Fix first variant not appearing when you select a font</li>\n<li>Typography: Fix select issues when plugins load old versions of the select2 library</li>\n</ul>\n<p><strong>(11/18/2017) - 1.5.4</strong></p>\n<ul>\n<li>Sections: Fix Visual/Text tab in WP 4.9</li>\n<li>Sections: Fix Content/Settings tab in WP 4.9</li>\n</ul>\n<p><strong>(11/14/2017) - 1.5.3</strong></p>\n<ul>\n<li>Blog: Fix masonry filter not working on custom post type archives</li>\n<li>Blog: Fix resized featured images when page header resizer is enabled</li>\n<li>Blog: Fix broken Customizer toggles in Safari</li>\n<li>Page Header: Fix PHP notice when saving posts</li>\n<li>Fix/add various gettext values</li>\n</ul>\n<p><strong>(11/10/2017) - 1.5.2</strong></p>\n<ul>\n<li>Backgrounds: Fix issue with saving background image options</li>\n</ul>\n<p><strong>(11/9/2017) - 1.5.1</strong></p>\n<ul>\n<li>Blog: Make infinite scroll container selector more specific</li>\n<li>Page Header: Fix background video when container is contained</li>\n<li>Page Header: Remove featured image on attachment pages</li>\n</ul>\n<p><strong>(11/8/2017) - 1.5</strong></p>\n<ul>\n<li>Backgrounds: Rebuild Customizer control</li>\n<li>Blog: Move Blog panel into the Layout panel</li>\n<li>Blog: Migrate options from select dropdowns to checkboxes where applicable</li>\n<li>Blog: Merge masonry + column options into one area</li>\n<li>Blog: Add new post meta visibility options for single posts</li>\n<li>Blog: Replace old image resizer (aq_resize) with Image Processing Queue (reload your site once or twice to build new images)</li>\n<li>Blog: Add single post featured image options</li>\n<li>Blog: Add page featured image options</li>\n<li>Blog: Remove masonry meta box</li>\n<li>Blog: Add option to remove padding around centered featured images</li>\n<li>Blog: Add option to turn read more link into button</li>\n<li>Blog: Add option to turn on infinite scroll regardless of layout</li>\n<li>Blog: Use infinite scroll with or without a load more button</li>\n<li>Blog: Make read more links better for accessibility</li>\n<li>Blog: Migrate single post page header position option to single featured image location option</li>\n<li>Blog: Remove ellipses if excerpt is set to 0</li>\n<li>Blog: Change style.css handle to include generate prefix</li>\n<li>Blog: Remove unnecessary IE8 support</li>\n<li>Blog: Add alt attribute to featured images</li>\n<li>Blog: Fix pagination spacing when One Container is set</li>\n<li>Blog: Fix column/masonry spacing at 768px</li>\n<li>Colors: Add select input live preview settings</li>\n<li>Colors: Fix button labels</li>\n<li>Copyright: Move Copyright section into Layout panel</li>\n<li>Menu Plus: Fix mobile menu logo bug when navigation is set to float right</li>\n<li>Menu Plus: Fix no transition sticky navigation bug while on mobile</li>\n<li>Page Header: Replace old image resizer (aq_resize) with Image Processing Queue (reload your site once or twice to build new images)</li>\n<li>Page Header: Don\'t use global page header locations if not published</li>\n<li>Page Header: Sanitize page header content when saved to database</li>\n<li>Page Header: Make sure Elementor sections are accessible when page header is merged</li>\n<li>Page Header: Prepare transparent color picker for WP 4.9 changes</li>\n<li>Page Header: Fix background video in Safari 11</li>\n<li>Page Header: Add global locations for taxonomies</li>\n<li>Page Header: Add {{custom_field.description}} template tag to taxonomies (categories etc..)</li>\n<li>Page Header: Add ID to page header element</li>\n<li>Page Header: Fix individual taxonomy page header control not appearing on Toolset created taxonomies</li>\n<li>Page Header: Ensure jQuery Vide (video background) script only loads when needed</li>\n<li>Page Header: Fix custom images not displaying</li>\n<li>Page Header: Fix image link option not working</li>\n<li>Typography: Lay groundwork for H6 options</li>\n<li>Typography: Space out heading typography options</li>\n<li>Typography: Add System Stack option</li>\n<li>Typography: Fix Google Font variant control in WP 4.9</li>\n<li>Sections: Show Envira button</li>\n<li>Sections: Show Gridable button</li>\n<li>Sections: Prepare transparent color picker for WP 4.9 changes</li>\n<li>WooCommerce: Add filter to cart menu item location</li>\n<li>WooCommerce: Better activation compatibility with multi-site</li>\n<li>WooCommerce: Use wc_get_cart_url() for menu item</li>\n<li>German translations updated (Thanks, Daniel!)</li>\n</ul>\n<p><strong>(8/18/2017) - 1.4.3</strong></p>\n<ul>\n<li>Page Header: Pass args to post_thumbnail_html filter</li>\n<li>Page Header: Allow custom field template tags on pages</li>\n<li>Page Header: Re-add generate_page_header_video_loop filter</li>\n<li>Page Header: Add generate_page_header_video_muted filter</li>\n<li>Page Header: Remove taxonomy title if page header has title</li>\n<li>WooCommerce: Improve disabled WC button styling</li>\n</ul>\n<p><strong>(8/11/2017) - 1.4.2</strong></p>\n<ul>\n<li>Page Header: Improve inner container</li>\n<li>Page Header: Allow contained page header even when position:absolute is set</li>\n<li>Page Header: Apply page header text color to headings in page header</li>\n<li>WooCommerce: Fix mobile columns issue</li>\n</ul>\n<p><strong>(8/9/2017) - 1.4.1</strong></p>\n<ul>\n<li>Page Header: Fix error in Customizer when using PHP version &lt; 5.5</li>\n</ul>\n<p><strong>(8/9/2017) - 1.4</strong></p>\n<ul>\n<li>Colors: Add back to top button color options</li>\n<li>Colors: Add h4-h5 color options</li>\n<li>Colors: Move button color options into own Buttons section</li>\n<li>Hooks: Show PHP execution message to admins only</li>\n<li>Menu Plus: Improve disabling of native mobile menu when slide-out is set</li>\n<li>Menu Plus: Fix sticky mobile menu when navigation is in sidebar</li>\n<li>Menu Plus: Fix invisible navigation when slide sticky is shown/hidden quickly</li>\n<li>Page Header: Complete code re-write</li>\n<li>Page Header: Turn Page Headers into a custom post type (CPT)</li>\n<li>Page Header: Can be applied per page, or globally (pages, posts, categories, CPTs etc..)</li>\n<li>Page Header: Template tags can be used in Page Header content (page title, author, date)</li>\n<li>Page Header: Turn bg color options in RGBA picker</li>\n<li>Page Header: New use bg color as image overlay option</li>\n<li>Page Header: Re-write parallax feature</li>\n<li>Page Header: Migrate Blog Page Header in Customizer into a CPT post on update</li>\n<li>Page Header: Add \"Inner Container\" width option.</li>\n<li>Page Header: Add menu background color (instead of forcing transparent)</li>\n<li>Page Header: Show content options all the time</li>\n<li>Page Header: Force full width page header if merge is set</li>\n<li>Page Header: Use set default color palettes in color pickers</li>\n<li>Page Header: New left/right padding option</li>\n<li>Sections: Make background color rgba color picker</li>\n<li>Sections: Add background color overlay options</li>\n<li>Sections: Use set default color palettes in color pickers</li>\n<li>Sections: Fix dropdown z-index bug introduced in WP 4.8.1</li>\n<li>Typography: Add H1-H3 line-height options</li>\n<li>Typography: Add H4-H5 typography options</li>\n<li>Typography: Add footer/copyright area typography options</li>\n<li>Typography: Add button typography options</li>\n<li>Typography: Rename Content Customizer section to Headings</li>\n<li>Typography: Add widget title separating space option</li>\n<li>Typography: Make fonts in Customizer search-able</li>\n<li>Typography: Allow Google Font variants to be added/removed</li>\n<li>WooCommerce: Fix columns issue on some pages</li>\n<li>WooCommerce: Fix mobile columns when using shortcode</li>\n<li>WooCommerce: Fix extra spacing in empty cart menu item</li>\n<li>WooCommerce: Show Cart text if no icon</li>\n<li>WooCommerce: Make cart menu item filterable</li>\n<li>WooCommerce: Fix sales badge height in IE11</li>\n</ul>\n<p><strong>(6/19/2017) - 1.3.1</strong></p>\n<ul>\n<li>Hooks: Add notice to disable PHP execution if DISALLOW_FILE_EDIT is defined</li>\n<li>Menu Plus: Fix RTL spacing in slide-out menu</li>\n<li>Menu Plus: Fix bug where sticky nav was interfering with mobile header</li>\n<li>Menu Plus: Merge all sticky nav transitions into one script</li>\n<li>Menu Plus: Re-write fade and slide sticky navigation transitions</li>\n<li>Menu Plus: Add new option to hide sticky navigation while scrolling down</li>\n<li>WooCommerce: Add padding to terms on checkout</li>\n<li>WooCommerce: Make shop page options work when shop is set to category display</li>\n<li>WooCommerce: Style mark element</li>\n<li>WooCommerce: Remove border/padding from checkout fields</li>\n<li>WooCommerce: Remove color from my account arrows</li>\n<li>WooCommerce: Adjust ship to address padding</li>\n<li>WooCommerce: Fix ul elements when WC image is floating</li>\n<li>WooCommerce: Fix pagination clearing issue</li>\n<li>WooCommerce: Add pt_BR translation</li>\n<li>WooCommerce: Fix spacing issue with menu item cart icon and certain fonts</li>\n<li>Fix double forward slashes in some script calls inside Customizer</li>\n<li>Add WPML config file</li>\n</ul>\n<p><strong>(5/17/2017) - 1.3</strong></p>\n<ul>\n<li>Backgrounds: Fix big with 100% auto sizing option</li>\n<li>Colors: Add WooCommerce add-on colors</li>\n<li>Import/Export: Add WooCommerce add-on</li>\n<li>Menu Plus: Improve Navigation Logo sizing</li>\n<li>Menu Plus: Re-write no transition sticky navigation</li>\n<li>Secondary Nav: Add padding to sides of top bar when merged</li>\n<li>Secondary Nav: Only load resources if the Secondary theme location is set</li>\n<li>Sections: Fix mix up of left/right content padding</li>\n<li>Spacing: New mobile menu item width/height options</li>\n<li>Spacing: New sticky menu item height option</li>\n<li>Spacing: New slide-out menu item height option</li>\n<li>Typography: New mobile menu item font size option</li>\n<li>WooCommerce: Introducing new WooCommerce add-on</li>\n<li>Move all Customizer controls and helper functions into globally accessible library</li>\n<li>Rebuilt range slider control to include responsive icons which display responsive controls</li>\n<li>Rebuilt typography control reducing number of controls from 50 to 10 (performance)</li>\n<li>Updated the automatic updater function</li>\n<li>Add filter to enable beta updates: generate_premium_beta_tester</li>\n</ul>\n<p><strong>(3/15/2017) - 1.2.96</strong></p>\n<ul>\n<li>Blog: Fix option sanitizing for read more and masonry loading options</li>\n<li>Copyright: Fix option sanitizing for Customizer textarea</li>\n<li>Disable Elements: Fix PHP notice when saving post</li>\n<li>Menu Plus: Fix option sanitizing for mobile menu label option</li>\n<li>Page Header: Fix PHP notice when saving post</li>\n<li>Secondary Nav: Fix option sanitizing for mobile menu label option</li>\n</ul>\n<p><strong>(3/14/2017) - 1.2.95</strong></p>\n<ul>\n<li>Add notice if GeneratePress theme isn\'t activated</li>\n<li>Add notice if GeneratePress theme update is available</li>\n<li>General code cleanup and optimization</li>\n<li>Backgrounds: Use new CSS class to write dynamic CSS</li>\n<li>Backgrounds: Deprecate Generate_Backgrounds_Customize_Misc_Control</li>\n<li>Backgrounds: Add options to the new top bar widget area</li>\n<li>Blog: Add generate_excerpt_more_output filter to read more link</li>\n<li>Blog: Add generate_content_more_link_output filter to read more link when more tag is added</li>\n<li>Blog: Remove ellipses from Read more link default</li>\n<li>Blog: Use the_title_attribute() where necessary</li>\n<li>Blog: Add generate_excerpt_length filter</li>\n<li>Colors: Add options for new top bar widget area</li>\n<li>Copyright: General code clean up</li>\n<li>Disable Elements: Add new Top Bar widget area to disable options</li>\n<li>Disable Elements: Change Post Image label to Featured Image</li>\n<li>Disable Elements: Completely remove header HTML if set to disable</li>\n<li>Disable Elements: Completely remove navigation HTML if set to disable</li>\n<li>Disable Elements: Completely remove footer HTML if set to disable</li>\n<li>Disable Elements: Add generate_metabox_capability filter to meta box</li>\n<li>Hooks: Update jQuery cookie library</li>\n<li>Hooks: Add new GENERATE_HOOKS_DISALLOW_PHP constant to allow users to disable PHP execution</li>\n<li>Import Export: Verify correct option names</li>\n<li>Menu Plus: Change Navigation Logo Position label to Navigation Logo Placement</li>\n<li>Menu Plus: Make sure sticky.js only enqueues if absolutely necessary</li>\n<li>Menu Plus: Move Sticky Navigation options into their own section</li>\n<li>Menu Plus: Move Slide-out Navigation options into their own section</li>\n<li>Menu Plus: Fix slight icon width change when toggling slide-out navigation</li>\n<li>Menu Plus: Close slide-out menu on item click</li>\n<li>Page Header: Fix top margin when full width header is below the header</li>\n<li>Page Header: Use the_title_attribute() where necessary</li>\n<li>Page Header: Change \"Position\" labels to \"Location\"</li>\n<li>Page Header: Add new generate_page_header_metabox_capability filter to meta box</li>\n<li>Page Header: Prevent undefined index notices</li>\n<li>Secondary Nav: Fix sub-navigation background, text and image variables</li>\n<li>Secondary Nav: Add unit to value if it exists allowing 0px values</li>\n<li>Secondary Nav: Move background image options into the Backgrounds add-on</li>\n<li>Secondary Nav: Move spacing options into the Spacing add-on</li>\n<li>Secondary Nav: Move typography options into the Typography add-on</li>\n<li>Secondary Nav: Move color options into the Colors add-on</li>\n<li>Secondary Nav: Add option to merge with new top bar widget area</li>\n<li>Secondary Nav: Fix dropdown menu arrow spacing in live preview</li>\n<li>Secondary Nav: Use custom color palettes</li>\n<li>Sections: Improve CSS output</li>\n<li>Sections: Remove sections-no-sidebars class if Sections aren\'t activated</li>\n<li>Spacing: Improve mobile/non-mobile live previews in Customizer</li>\n<li>Spacing: Make sidebar width options range sliders</li>\n<li>Spacing: Add options for new top bar widget area</li>\n<li>Spacing: Add ability to link all 4 spacing controls together</li>\n<li>Spacing: Add all 4 sides to mobile content padding</li>\n<li>Spacing: Fix Customizer experience when switching between one container and separate containers</li>\n<li>Typography: Improve mobile/non-mobile live previews in Customizer</li>\n<li>Typography: Add options for new top bar widget area</li>\n<li>Typography: Update list of available fonts</li>\n<li>pt_PT translations added - thank you Pedro!</li>\n</ul>\n<p><strong>(1/25/2017) - 1.2.94</strong></p>\n<ul>\n<li>Menu Plus: Fix contained sticky menu with no transition + floating bug</li>\n</ul>\n<p><strong>(1/24/2017) - 1.2.93</strong></p>\n<ul>\n<li>Backgrounds: Fix 100% width option</li>\n<li>Blog: Change Post Image label to Featured Image</li>\n<li>Blog: Fully remove featured image if it\'s set to hide</li>\n<li>Colors: Add transparency slider to all background elements</li>\n<li>Colors: Remove defaults and dynamic CSS functions - the GP theme handles this</li>\n<li>Colors: Add new generate_default_color_palettes filter to set up default color palettes</li>\n<li>Copyright: Use new copyright filter if possible</li>\n<li>Disabe Elements: Hide mobile header if navigation is disabled</li>\n<li>Menu Plus: Remove classie.js</li>\n<li>Menu Plus: Add .navigation-stick class to all sticky menu transitions</li>\n<li>Menu Plus: Prevent slide-out navigation jump on desktop</li>\n<li>Menu Plus: Change Sticky Effect label to Sticky Transition</li>\n<li>Menu Plus: Clean up dynamic CSS</li>\n<li>Menu Plus: Add .navigation-logo class to the navigation logo</li>\n<li>Menu Plus: Rebuild and simplify navigation logo CSS</li>\n<li>Menu Plus: Add live preview to navigation logo height</li>\n<li>Menu Plus: Add new generate_navigation_logo to the Navigation Logo URL</li>\n<li>Menu Plus: Fix mixing up of slide-out and search icon when sticky and floating left/right</li>\n<li>Page Header: Add parallax speed filter - generate_page_header_parallax_speed</li>\n<li>Page Header: Make sure wp.media javascript object exist to avoid potential JS errors</li>\n<li>Page Header: Make parallax work when page header is set to contained width</li>\n<li>Page Header: Add generate_metabox_capability to Page Header meta box</li>\n<li>Page Header: Add new option to overwrite Navigation Logo per page</li>\n<li>Page Header: Fix full screen page header height when content is longer than the screen</li>\n<li>Secondary Nav: Change Navigation Position to Navigation Location</li>\n<li>Secondary Nav: Add defaults to the style.css and only add dynamic CSS if needed</li>\n<li>Secondary Nav: Improve mobile menu CSS</li>\n<li>Sections: Add new Section ID field</li>\n<li>Spacing: Fix instant preview for masonry and columns</li>\n<li>Spacing: Add size slider to the separator options</li>\n<li>Spacing: Add mobile content padding option</li>\n<li>Spacing: Improve live previewing performance in the Customizer</li>\n<li>Spacing: Remove defaults and dynamic CSS functions - the GP theme handles this</li>\n<li>Spacing: Set left and right footer widget area padding if it\'s set to 0</li>\n<li>Spacing: Clean up sidebar width code</li>\n<li>Spacing: Change range slider style to fit core WP style</li>\n<li>Typography: Move mobile font size options into their respective sections</li>\n<li>Typography: Remove defaults and dynamic CSS functions - the GP theme handles this</li>\n<li>Typography: Change generate_display_google_fonts() function to generate_enqueue_google_fonts()</li>\n<li>Typography: Change range slider style to fit core WP style</li>\n<li>Change license key field from text to password</li>\n<li>Czech translation updated</li>\n<li>German translation updated</li>\n<li>Brazilian translation added</li>\n<li>Italian translated updated</li>\n</ul>\n<p><strong>(11/29/2016) - 1.2.92</strong></p>\n<ul>\n<li>Blog: Fix category title and load more alignment while using masonry</li>\n<li>Blog: Fix masonry spacing on mobile</li>\n<li>Blog: Simplify masonry spacing</li>\n<li>Blog: Simplify columns spacing</li>\n<li>Menu Plus: Fix alignment jump when browser is zoomed in and resized down to 768px</li>\n<li>Menu Plus: Add generate_logo_title filter to sticky logo and mobile header logo</li>\n<li>Menu Plus: Add spacing to the menu logo when the inner navigation is set to full width</li>\n<li>Menu Plus: Fix navigation search issue with no transition sticky menu</li>\n<li>Menu Plus: Don\'t float mobile header navigation if no logo is set</li>\n<li>Typography: Adjust typography name sanitization function name to avoid errors with old GP versions</li>\n<li>Typography: Remove parameter from generate_display_google_fonts to avoid warning with child theme generators</li>\n<li>Typography: Add body line height option</li>\n<li>Typography: Add paragraph margin option</li>\n<li>Typography: Reduce copyright/footer font size default to 14px</li>\n<li>Typography: Add reset button to all size sliders</li>\n<li>Secondary Nav: Remove CSS which stops floating navigation at 1024px</li>\n<li>Secondary Nav: Fix jump when removing navigation in the Customizer</li>\n<li>Secondary Nav: New option: Inner navigation width</li>\n<li>Secondary Nav: Add reset button to font size slider</li>\n<li>Secondary Nav: Allow transitions on menu items</li>\n<li>Sections: Fix bug where error would happen if the user isn\'t using at least WordPress 4.5</li>\n<li>Sections: Remove GP theme grid dependency in admin</li>\n<li>Sections: Allow oembed in section content</li>\n<li>Sections: Use jQuery.on() instead of delegate()</li>\n<li>Sections: Remove unnecessary files</li>\n<li>Spacing: Prevent warning caused by wrong version constant</li>\n<li>Page Header: New filter: generate_get_blog_page_header - makes it possible to set the blog page header under different conditions</li>\n<li>Page Header: Improve full height page header functionality on mobile/orientation change</li>\n<li>Page Header: Remove fixed background attachment from parallax background image to help preserve image ratio</li>\n<li>Add prompt to add license key in Plugins area if it isn\'t activated and updates are available</li>\n<li>Move all language files into the /langs/ folder</li>\n<li>Reduce length of some text domains to avoid updating issue with some servers</li>\n<li>Chinese translations added - thanks Alfred!</li>\n<li>Portuguese translation added - thanks Alvaro!</li>\n<li>Russian translations updated - thanks Alex!</li>\n<li>German translations updated - thanks Daniel!</li>\n</ul>\n<p><strong>(17/10/2016) - 1.2.91</strong></p>\n<ul>\n<li>Menu Plus: Fix bug where navigation logo wasn\'t displaying when effect is set to None</li>\n<li>Menu Plus: Fix bug where mobile header javascript was showing up when it shouldn\'t</li>\n<li>Sections: Add Shortcodes Ultimate compatibility</li>\n<li>Page Header: Fix Italian translation</li>\n<li>Page Header: Only show metabox on public post types</li>\n<li>Page Header: Fully re-design metabox</li>\n<li>Page Header: Add padding unit option (px or %)</li>\n<li>Blog: Make excerpt length value update immediately in Customizer</li>\n<li>Blog: Improve masonry functionality</li>\n<li>Russian translations updated - massive thanks to Alexey!</li>\n</ul>\n<p><strong>(2/10/2016) - 1.2.90</strong></p>\n<ul>\n<li>Prevent direct access to all files</li>\n<li>All Czech translations updated (thanks Ondrej!)</li>\n<li>Copyright: Improve Customizer experience</li>\n<li>Sections: Completely re-designed and re-built Sections</li>\n<li>Sections: Section content is now saved into your default editor on update/save. This prevents theme-lock, meaning your content will still exist even if you remove Sections.</li>\n<li>Sections: Send to default editor button removed as the before removes the need for it</li>\n<li>Sections: Add bottom &amp; top padding unit option (px or %)</li>\n<li>Page Header: Add generate_page_header_video_loop filter to disable looping of the page header video</li>\n<li>Page Header: Add option to remove the page header from single posts</li>\n<li>Page Header: Make number only inputs only accepts numbers</li>\n<li>Page Header: Force page header above the content if merged option is set</li>\n<li>Page Header: Disable automatic check for background video posters if no image is set</li>\n<li>Page Header: Use featured image as background image if no page header image is set</li>\n<li>Spacing: Remove duplicate menu item height CSS</li>\n<li>Spacing: Make inputs number only</li>\n<li>Spacing: All options are now instant preview</li>\n<li>Blog: Make post image sizes and excerpt length inputs number only</li>\n<li>Blog: Force full width masonry items on mobile</li>\n<li>Blog: Show Blog panel even when we\'re not viewing the blog in the Customizer</li>\n<li>Menu Plus: Reduce space between menu toggle and search icon on mobile with menu logo enabled</li>\n<li>Menu Plus: Show navigation logo option and navigation logo position option even if sticky navigation isn\'t enabled</li>\n<li>Menu Plus: Optimize javascript and put it all in files instead of in wp_footer</li>\n<li>Menu Plus: Allow navigation logo to show in sidebar navigation causing a sidebar logo effect</li>\n<li>Menu Plus: Float mobile header to the right on RTL installations</li>\n<li>Typography: Add new filter: generate_typography_variants</li>\n<li>Typography: Make font size, weight and decoration instant preview</li>\n<li>Typography: Only show top 200 popular Google Fonts in Customizer (increases Customizer performance)</li>\n<li>Typography: generate_number_of_fonts filter added so you can choose how many fonts to include in the Customizer list</li>\n<li>Typography: Remove 2 database queries</li>\n<li>Typography: Add Segoe UI font to default list</li>\n<li>Typography: Revamp how Google fonts get their category and variants (increase front end performance)</li>\n<li>Colors: Make all colors instant preview</li>\n<li>Secondary Navigation: Colors are now instant preview</li>\n<li>Secondary Navigation: Typography font weight, transform and size are now instant preview</li>\n<li>Secondary Navigation: Layout options are now instant preview</li>\n<li>Hooks: Disable spell check in hook textareas</li>\n<li>Hooks: Fix floating box issue on RTL installations</li>\n<li>Backgrounds: Use default WordPress image uploader customizer control</li>\n<li>Customizer: All Customizer controls are now rendered in javascript/json - big +1 for performance</li>\n</ul>\n<p><strong>(7/23/2016) - 1.2.89</strong></p>\n<ul>\n<li>Fix translations</li>\n<li>GP Hooks: Add new filter: generate_hooks_capability - change the capability for users who can edit hooks</li>\n<li>Disable Elements: Remove metabox from attachment post type</li>\n<li>Page Header: Fix issue where merged header navigation colors weren\'t working</li>\n<li>Page Header: Remove metabox from the attachment post type</li>\n<li>Menu Plus: Fix sticky menu not unsticking if it\'s the very top element</li>\n</ul>\n<p><strong>(7/16/2016) - 1.2.88</strong></p>\n<ul>\n<li>GP Premium: Cut down unnecessary folders to prevent update failures on some servers</li>\n<li>Page Header: Add a new option in Advanced Settings: Place content behind header (sliders etc..)</li>\n<li>Page Header: Fix header and navigation alignment in vertical centered page header when contained</li>\n<li>Sections: Rename template file to shorter name</li>\n<li>Typography: Rename control file to shorter name</li>\n<li>Copyright: Fix/improve live preview of copyright in the Customizer</li>\n<li>Blog: Show the read more label setting for both excerpt and full content settings</li>\n<li>Menu Plus: Fix sticky menu stopping at the bottom of the Page Header</li>\n<li>Menu Plus: Improve sticky menu experience</li>\n<li>Menu Plus: Float sticky menu logo right when navigation is set to float left</li>\n<li>Secondary Navigation: Adjust z-index</li>\n</ul>\n<p><strong>(7/10/2016) - 1.2.87</strong></p>\n<ul>\n<li>Increase database sanitization/escaping and harden security throughout all add-ons</li>\n<li>Backgrounds: Place options into sections inside Background Images panel</li>\n<li>Blog: Add new filter to set the column count: generate_blog_get_column_count</li>\n<li>Blog: Add title tag to read more link</li>\n<li>Secondary Navigation: Fix spacing issue with dropdown menu arrow</li>\n<li>Secondary Navigation: Remove Secondary Navigation panel</li>\n<li>Secondary Navigation: Move sections into their applicable panels</li>\n<li>Secondary Navigation: Add RTL language support</li>\n<li>Spacing: Place options into sections inside Spacing panel</li>\n<li>Spacing: Add RTL support</li>\n<li>Copyright: Move copyright textarea into the Customizer</li>\n<li>Copyright: Swedish translation added - thanks Jamal!</li>\n<li>Page Header: Fix logo setting to work with new WordPress 4.5 custom_logo feature</li>\n<li>Page Header: Vastly improved merged header option</li>\n<li>Page Header: Move Blog Page Header panel into the Blog panel</li>\n<li>Sections: Fix bug where first paragraph wasn\'t being correct wrapped in &lt;p&gt; tag</li>\n<li>Menu Plus: Move options into Layout panel</li>\n</ul>\n<p><strong>(5/29/2016) - 1.2.86</strong></p>\n<ul>\n<li>Blog: Allow resizer to upscale images</li>\n<li>Page Header: Allow resizer to upscale images</li>\n<li>Sections: Fix issue with images enlarging in Sections</li>\n</ul>\n<p><strong>(5/24/2016) - 1.2.85</strong></p>\n<ul>\n<li>Blog: Fix cropping when Photon is being used</li>\n<li>Page Header: Fix cropping when Photon is being used</li>\n</ul>\n<p><strong>(5/23/2016) - 1.2.84</strong></p>\n<ul>\n<li>Blog: Fix bug where two columns appear briefly at 768px width</li>\n<li>Blog: Change image resizer to more lightweight option</li>\n<li>Blog: Fix uneven spacing at the bottom of blog posts in columns</li>\n<li>Sections: Apply the_content filter once to the whole sections page to avoid multiple sharing icons being added by plugins etc..</li>\n<li>Page Header: Change image resizer to more lightweight option</li>\n<li>Page Header: Add apply image sizes button to the Blog Page Header crop options</li>\n<li>Translations: Czech translations updated - thanks Ondrej!</li>\n<li>Translations: Polish translations updated - thanks Krzysztof!</li>\n</ul>\n<p><strong>(5/5/2016) - 1.2.83</strong></p>\n<ul>\n<li>Blog: Fix bug where full width post wasn\'t displaying in columns</li>\n<li>Blog: Add a check for the blog content customizer control in the theme to prevent warning</li>\n<li>Blog: Add button to apply post image sizes in the Customizer to prevent unnecessary images being created</li>\n</ul>\n<p><strong>(5/3/2016) - 1.2.82</strong></p>\n<ul>\n<li>Blog: Improve masonry width logic</li>\n<li>Blog: Improve proportional image resizing</li>\n<li>Blog: Switch to a better image resizer</li>\n<li>Spacing: Add spacing for dropdown menu toggle and mobile items in the navigation</li>\n<li>Colors: Fix text-domain for \"Colors\" panel to allow it to be translated</li>\n<li>Colors: Add focus style to buttons</li>\n<li>Sections: Replace the_content filter with Sections specific filter to avoid plugins adding icons and other content into each section</li>\n<li>Page Header: Add background image as the video placeholder if it can\'t be loaded (mobile devices etc..)</li>\n<li>Page Header: Switch to a better image resizer</li>\n<li>Typography: Adjust label size in Typography sections in Customizer for longer translations</li>\n<li>Polish translations added - thanks, Paul!</li>\n</ul>\n<p><strong>(3/24/2016) - 1.2.81</strong></p>\n<ul>\n<li>Page Header: Fix javascript bug in Safari</li>\n</ul>\n<p><strong>(3/23/2016) - 1.2.80</strong></p>\n<ul>\n<li>Page Header: Fix iOS bug with parallax background image</li>\n<li>Page Header: Move \"Appearance &gt; Blog Page Header\" to \"Customize &gt; Page Header &gt; Blog\"</li>\n<li>Page Header: Adjust proportional resizing</li>\n<li>Page Header: Add generate_page_header_featured_image filter to force usage of the featured image over the custom field</li>\n<li>Page Header: Add option to merge site header and page header with a transparent navigation</li>\n<li>Page Header: Add option to include a video background in your page header</li>\n<li>Page Header: Add option to replace your logo/header on individual pages/posts</li>\n<li>Page Header: Improve metabox saving to prevent empty values in the database</li>\n<li>Page Header: Minify parallax JS</li>\n<li>Typography: Add input fields to font sizes to manually adjust them without slider</li>\n<li>Typography: Adjust separators in Customizer</li>\n<li>Typography: Add mobile font sizes for the main title, H1 and H2</li>\n<li>Menu Plus: Adjust navigation width with container width in Customizer</li>\n<li>Menu Plus: Fix sticky navigation spacer width</li>\n<li>Menu Plus: Navigation float right aligns sticky menu items to the right</li>\n<li>Menu Plus: Add new dropdown arrows to slideout menu</li>\n<li>Menu Plus: New Feature: Mobile Header</li>\n<li>Menu Plus: Separate options into panels</li>\n<li>Menu Plus: Close slideout menu with escape key</li>\n<li>Secondary Nav: Fix separator spacing below secondary navigation in the widget area</li>\n<li>Secondary Nav: Add support for navigation click dropdown</li>\n<li>Secondary Nav: Minify CSS and JS</li>\n<li>Blog: Fix category/author page header when columns are set</li>\n<li>Blog: Remove generate_blog_activate_masonry function and bundle it in with generate_blog_get_masonry function</li>\n<li>Blog: Turn off masonry if we\'re on WooCommerce search results</li>\n<li>Blog: Turn off columns if we\'re on WooCommerce search results</li>\n<li>Blog: Minify CSS and JS</li>\n<li>Colors: Add focus styles to navigation</li>\n<li>Backgrounds: Add separators in Customizer</li>\n<li>Backgrounds: Fix doubling up background images in the content when One Container is set</li>\n<li>Spacing: Add separators in Customizer</li>\n<li>Sections: Improve editor handling when visual editor is turned off</li>\n<li>Sections: Use excerpt metabox on archives/blog if Sections is in use in single post</li>\n<li>Sections: Fix bug where archives/blog loses layout if most recent post is using Sections</li>\n<li>Sections: Minify CSS and JS</li>\n<li>Disable Elements: Improve metabox saving to prevent empty values in the database</li>\n<li>Italian translations added for all add-ons - thank you Roberto!</li>\n<li>German translations updated for all add-ons - thank you Daniel!</li>\n</ul>\n<p><strong>(12/22/2015) - 1.2.79</strong></p>\n<ul>\n<li>Spacing: Add function_exists in case GP theme isn\'t activated</li>\n</ul>\n<p><strong>(12/21/2015) - 1.2.78</strong></p>\n<ul>\n<li>Backgrounds: Fix bug where navigation background image was showing in sub-navigation as well</li>\n<li>Backgrounds: Optimize CSS</li>\n<li>Colors: Optimize CSS</li>\n<li>Secondary Nav: Remove unnecessary CSS from &lt;head&gt;</li>\n<li>Spacing: Optimize CSS</li>\n<li>Typography: Optimize CSS</li>\n<li>Menu Plus: Fix slideout menu glitch when menu item has # as URL</li>\n<li>Menu Plus: Improve sticky functionality and display</li>\n<li>Menu Plus: Update sticky menu width when navigation is container and layout is updated</li>\n<li>Menu Plus: Improve slideout menu transition</li>\n<li>Blog: Add filter to add post types for the masonry width metabox: generate_blog_masonry_metabox</li>\n<li>Blog: Add option to set posts as equal height columns</li>\n<li>Blog: Update masonry when layout is changed in Customizer</li>\n<li>Blog: Add safeguard in case people type Auto in post image sizes</li>\n<li>Sections: Add support for password protected pages and Sections</li>\n<li>Spacing: Remove widget padding if one container is set</li>\n<li>Spacing: Right and left content padding now affects content area when One Container is set</li>\n<li>Page Header: Fix proportional resizing</li>\n<li>Updater functionality improved</li>\n</ul>\n<p><strong>(11/29/2015) - 1.2.77</strong></p>\n<ul>\n<li>Blog: Fix warning when post image width is set without a height</li>\n</ul>\n<p><strong>(11/27/2015) - 1.2.76</strong></p>\n<ul>\n<li>Menu Plus: Don\'t display sticky menu logo if sticky menu is disabled</li>\n</ul>\n<p><strong>(11/27/2015) - 1.2.75</strong></p>\n<ul>\n<li>Czech translations added to all add-ons - thanks Ondrej!</li>\n<li>Slovak translation added to GP Premium - thanks Jan!</li>\n<li>Move from email activation to license key activation</li>\n<li>Menu Plus: Add ability to add menu item with slider-exit class to exit the slideout menu</li>\n<li>Menu Plus: Add generate_after_slideout_navigation hook</li>\n<li>Menu Plus: Adjust mobile search item selector to include ability for more items to be added</li>\n<li>Menu Plus: Fix slideout menu on Windows phones</li>\n<li>Menu Plus: Reduce amount of CSS shown in the &lt;head&gt; section</li>\n<li>Blog: Use array for image resizer instead of string</li>\n<li>Blog: Show date and author on single post even if content title is hidden</li>\n<li>Hooks: Move before header hook content above navigation when set to above header</li>\n<li>Colors: Adjust mobile search item selector to include ability for more items to be added</li>\n<li>Colors: Reduce amount of CSS shown in the &lt;head&gt; section</li>\n<li>Spacing: Adjust mobile search item selector to include ability for more items to be added</li>\n<li>Spacing: Reduce amount of CSS shown in the &lt;head&gt; section</li>\n<li>Sections: Allow sidebars to display on with Sections if generate_sections_sidebars filter is set to true</li>\n<li>Sections: Make adjustment to ensure compatibility with PHP7</li>\n<li>Disable Elements: Disabling the site navigation also disbale the sticky navigation if Menu Plus is activated</li>\n<li>Typography: Reduce amount of CSS shown in the &lt;head&gt; section</li>\n<li>Backgrounds: Reduce amount of CSS shown in the &lt;head&gt; section</li>\n<li>Page Header: Reduce CSS shown in &lt;head&gt; section if there\'s no page header content</li>\n<li>Secondary Nav: Reduce amount of CSS shown in the &lt;head&gt; section</li>\n</ul>\n<p><strong>(10/30/2015) - 1.2.74</strong></p>\n<ul>\n<li>Menu Plus: Fix mobile menu overlap with search icon when sticky effect set to \"none\"</li>\n</ul>\n<p><strong>(10/29/2015) - 1.2.73</strong></p>\n<ul>\n<li>Blog: Allow post image cropping to have proportional width based on height</li>\n<li>Blog: Hiding the date, author, categories, tags and comments link fully removes them (requires GP 1.3.18)</li>\n<li>Typography: Add font size controller for footer/copyright</li>\n<li>Page Header: Fix full screen issue when refreshing half way down the screen</li>\n<li>Colors: Fix missing placeholder text in Edge browser</li>\n<li>Colors: Adjust mobile search item selector</li>\n<li>Menu Plus: Change \"hamburger\" icon to close icon on slideout menu open</li>\n<li>Menu Plus: Fix bug where mobile only sticky menu was appear on desktop when set to fade</li>\n<li>Menu Plus: Fix background image issue when slideout menu is enabled</li>\n<li>Menu Plus: Add classes to &lt;body&gt; element for site logo in navigation/sticky navigation</li>\n<li>Menu Plus: Add styling for mobile search item</li>\n<li>Menu Plus: Replace slideout menu script with a more lightweight, efficient one</li>\n<li>Disable Elements: Disabling the headline/title fully removes it from the code (requires GP 1.3.18)</li>\n<li>Spacing: Add styling for mobile search item</li>\n</ul>\n<p>----</p>\n<p><strong>(10/3/2015) - 1.2.72</strong></p>\n<ul>\n<li>Blog: Fix masonry on tablet orientation change</li>\n<li>Blog: Fix masonry on search results page</li>\n<li>Menu Plus: Fix sticky menu bug when navigation is in sidebar</li>\n<li>Menu Plus: Remove empty javascript element if slideout menu is disabled</li>\n<li>Menu Plus: Fix sticky menu bug when mobile menu is toggled</li>\n<li>Menu Plus: Delay sticky script from initializing until all other scripts are done</li>\n<li>Page Header: Add microdata to page header image</li>\n<li>Spacing: Fix mobile search spacing</li>\n<li>Sections: Add generate_sections_default_padding_top and generate_sections_default_padding_bottom filters for the default padding</li>\n</ul>\n<p>----</p>\n<p><strong>(9/16/2015) - 1.2.71</strong></p>\n<ul>\n<li>Menu Plus: Fix empty alert</li>\n</ul>\n<p>----</p>\n<p><strong>(9/14/2015) - 1.2.70</strong></p>\n<ul>\n<li>Menu Plus: German translation added (thank you, Daniel!)</li>\n<li>Disable Elements: Disable post image on single template if set</li>\n<li>Spacing: Adjust spacing for mobile search</li>\n<li>Typography: Range slider settings adjusted</li>\n<li>Sections: Fix Add Media button when in Text editor</li>\n<li>Menu Plus: Fix conflict with navigation search in mobile menu</li>\n<li>Page Header: Fix mobile bug on Chrome with full height page headers</li>\n<li>Menu Plus: Fix Secondary Navigation dropdown issue when slideout menu is enabled</li>\n</ul>\n<p>----</p>\n<p><strong>(8/24/2015) - 1.2.69</strong></p>\n<ul>\n<li>[!] Menu Plus: Sticky Menu Slide was showing up behind content</li>\n<li>[*] Menu Plus: Remove notices if GP isn\'t activated</li>\n<li>[*] Page Header: Remove notice if GP isn\'t activated</li>\n</ul>\n<p>----</p>\n<p><strong>(8/22/2015) - 1.2.68</strong></p>\n<ul>\n<li>[!] Blog: Remove masonry load more button if linked directly to last page</li>\n<li>[!] Sections: Fix issue with sections displaying on IE8</li>\n<li>[*] Sections: Add new filter to allow sections on any post type you like: generate_sections_post_types</li>\n<li>[+] Page Header: Add new filter to allow page header link to open in new tab: generate_page_header_target</li>\n<li>[!] Menu Plus: Fix error when using Jetpack\'s Mobile Theme</li>\n<li>[*] Menu Plus: Improve fade transition</li>\n<li>[!] Colors: Fix mobile menu text hover</li>\n<li>[+] GP Premium: Activate/Deactivate multiple add-ons at once</li>\n</ul>\n<p>----</p>\n<p><strong>(8/6/2015) - 1.2.67</strong></p>\n<ul>\n<li>[*] Disable Elements: Disable post image now works without Page Header being activated</li>\n<li>[!] Menu+: Fix bug where hidden navigation clone was conflicting with secondary navigation</li>\n<li>[*] Secondary Nav: Mobile menu toggle changed from &lt;h3&gt; to &lt;button&gt;<br />\n+ If you\'ve used h3.menu-toggle in any custom CSS, you\'ll need to adjust it (.menu-toggle is fine)</li>\n</ul>\n<p>----</p>\n<p><strong>(8/2/2015) - 1.2.66</strong></p>\n<ul>\n<li>[*] Menu+: Smoothen slideout transitions</li>\n<li>[+] Menu+: Add \"generate_menu_slideout_effect\" filter</li>\n<li>[+] Menu+: Add \"generate_menu_slideout_position\" filter</li>\n<li>[!] Menu+: Fix alignment issue with float right contained sticky menu</li>\n<li>[*] Menu+: Show sticky menu on mobile only, desktop only or both</li>\n<li>[*] Menu+: Various tweaks</li>\n<li>[+] Blog: Add jump to anchor when using read more tag</li>\n</ul>\n<p>----</p>\n<p><strong>(8/1/2015) - 1.2.65</strong></p>\n<ul>\n<li>[+] Menu Plus: Added to GP Premium</li>\n<li>[*] Blog: Run image resizer on front-end only</li>\n<li>[*] Page Header: Run image resizier on front-end only</li>\n<li>[*] Page Header: Run cmb2 only if it hasn\'t already been initialized</li>\n<li>[*] Blog: Remove float on floated post images on mobile</li>\n<li>[*] All: Email/add-on activation improved</li>\n</ul>\n<p>----</p>\n<p><strong>(7/13/2015) - 1.2.64</strong></p>\n<ul>\n<li>[*] Blog: If the read more input is empty, don\'t include markup in post</li>\n<li>[*] Blog: fix masonry horizontal scroll on mobile (no sidebars)</li>\n<li>[*] Blog: Fix post image (float left or right) margin on mobile</li>\n<li>[*] Secondary Nav: Adjust mobile breakpoint</li>\n<li>[!] Secondary Nav: Fix secondary navigation font bug</li>\n<li>[!] Typography: Fix weird Google Font rendering bug</li>\n<li>[!] Sections: Fix bug where paragraphs were being stripped</li>\n<li>[!] Sections: Fix shortcode bug</li>\n</ul>\n<p>----</p>\n<p><strong>(6/28/2015) - 1.2.63</strong></p>\n<ul>\n<li>[+] Typography + Spacing: Italian translations added (thanks, Roberto!!)</li>\n<li>[+] Allow shortcodes in text widgets</li>\n<li>[!] Typography: Fix bug where variants weren\'t registering</li>\n</ul>\n<p>----</p>\n<p><strong>(6/25/2015) - 1.2.62</strong></p>\n<ul>\n<li>[+] All add-ons - French translations updated (thanks, Philippe!!)</li>\n<li>[+] All add-ons - Russian translations added (thanks, Alexey!!)</li>\n<li>[*] Page Header: Improve fullscreen height and vertical center functionality</li>\n<li>[*] Secondary Nav: Wrap mobile menu in span</li>\n<li>[*] Sections: Fix some weird CSS styling in editor</li>\n<li>[*] Secondary Nav: Updated mobile breakpoint to 767px</li>\n<li>[+] Sections: Add generate_sections_parallax_speed filter to change the speed of parallax effect</li>\n<li>[+] Blog: Add new filter: generate_blog_activate_masonry - this checks whether we should activate masonry or not</li>\n<li>[+] Blog: Add code to allow Google Analtyics to track masonry load more as pageviews</li>\n<li>[+] Typography: Major update! Values changed to allow future Google Font additions/changes - please backup before updating.</li>\n</ul>\n<p>----</p>\n<p><strong>(5/20/2015) - 1.2.61</strong></p>\n<ul>\n<li>[!] Sections: Fix spacing bug while using one container</li>\n<li>[!] Typography: Fix subset issue</li>\n<li>[*] Translation files updated</li>\n<li>[+] Blog: Add class to read more paragraph container</li>\n<li>[!] Secondary Nav: Fix background image upload controls</li>\n<li>[*] Blog: Fix broken translation strings</li>\n<li>[+] Sections: Add ability to use Sections on posts</li>\n</ul>\n<p>----</p>\n<p><strong>(5/16/2015) - 1.2.6</strong></p>\n<ul>\n<li>[*] Page Header: Performance improvements</li>\n<li>[*] Page Header: GP_IMAGE_RESIZER constant added to give option to disable automatic thumbnail regeneration</li>\n<li>[x] Page Header: Crop position removed for now</li>\n<li>[*] French translations updated (thanks, Philippe!!)</li>\n<li>[!] Copyright: Fix bug where copyright was being removed when email was saved</li>\n</ul>\n<p>----</p>\n<p><strong>(5/13/2015) - 1.2.5</strong></p>\n<p>[!] Hooks: Fix bug where Inside Content Container wasn\'t showing up</p>\n<p>----</p>\n<p><strong>(5/6/2015) - 1.2.4</strong></p>\n<ul>\n<li>[!] Page Header: Add function_exists() functions to admin-options.php to stop error when standalone and GP Premium are activated.</li>\n<li>[!] Sections: Fix bug where sidebar padding wasn\'t working with one container set</li>\n<li>[*] Sections: Improve editor when visual editor disabled</li>\n<li>[!] Page Header: Fix bug in parallax.js</li>\n<li>[*] German language updated through all add-ons (thanks, Daniel!!)</li>\n<li>[*] Blog: Disallow masonry on any post types but the core \"post\" type</li>\n<li>[!] Sections: Remove background color on sections pages when one container is set.</li>\n<li>[!] Page Header: Remove empty space on attachment page</li>\n<li>[*] Import/Export: Delete GP Hooks specific import - no longer needed</li>\n<li>[+] Hooks: Add option to disable individual hooks</li>\n<li>[+] Hooks: Move options to one table - reduces queries</li>\n<li>[+] Typography: Widget content size option added</li>\n<li>[!] Sections: Fix bug dealing with sidebar layouts</li>\n<li>[*] Email activation performance increased</li>\n</ul>\n<p>----</p>\n<p><strong>(4/14/2015) - 1.2.3</strong></p>\n<ul>\n<li>[!] Sections: Fix language path</li>\n<li>[*] All add-ons: Update language files</li>\n<li>[!] Sections: Remove wp_enqueue_media() call which was breaking featured image</li>\n</ul>\n<p>----</p>\n<p><strong>(4/12/2015) - 1.2.2</strong></p>\n<ul>\n<li>[!] Spacing: Fix bug where sidebar padding wasn\'t working with one container set</li>\n<li>[!] Sections: Fix error relating to old version of PHP</li>\n</ul>\n<p>----</p>\n<p><strong>(4/11/2015) - 1.2.1</strong></p>\n<ul>\n<li>[!] Sections: Fix bug where HTML was being stripped</li>\n</ul>\n<p>----</p>\n<p><strong>(4/9/2015) - 1.2</strong></p>\n<ul>\n<li>[+] German translations added (thank you Daniel!!)</li>\n<li>[*] Page Header &amp; Blog: remove bfi_thumb and use WordPress resizer (reduced memory usage)</li>\n<li>[*] Typography: Group typography options into areas</li>\n<li>[+] Typography: Comic Sans MS added to font list</li>\n<li>[*] Colors: French translation updated</li>\n<li>[*] Spacing: French translation updated</li>\n<li>[*] Blog: French translation updated</li>\n<li>[*] Copyright: French translation updated</li>\n<li>[+] Copyright: Save button added below textarea</li>\n<li>[+] Typography: French translation added</li>\n<li>[*] Secondary Nav: Mobile breakpoint removed from mobile.css and added to enqueue function</li>\n<li>[+] Sections: Introducing Generate Sections</li>\n<li>[!] Page Header: Fix bug where add paragraphs doesn\'t work on Blog Header</li>\n<li>[+] Import/Export: Ability to import/export GP Hooks added</li>\n<li>[+] Hooks: Ability to import/export GP Hooks added</li>\n<li>[*] Page Header: Disable parallax on mobile</li>\n<li>[!] Blog: Show next/prev links even when everything else is hidden</li>\n<li>[*] Blog: Masonry improved</li>\n</ul>\n<p>----</p>\n<p><strong>(1/28/2015) - 1.1</strong></p>\n<ul>\n<li>[+] Spacing: French translation added</li>\n<li>[+] Copyright: French translation added</li>\n<li>[+] Blog: French translation added</li>\n<li>[*] Blog: Choosing medium as the masonry block width gives items 50% width.</li>\n<li>[*] Blog: Masonry re-written to perform better</li>\n<li>[+] Page Header: New options page added (Appearance &gt; Blog Page Header) - add a page header to your blog</li>\n<li>[+] Page Header: Better parallax effect added to page header background</li>\n<li>[!] Page Header: Resizing image turned it to PNG and increased file size</li>\n<li>[+] Page Header: Added option to enable full screen background image</li>\n<li>[+] Page Header: Added option to vertically center content</li>\n<li>[+] Colors: Color options added for H1, H2 and H3 elements</li>\n<li>[+] Typography: Font fallback set - use generate_fallback_font filter to change it</li>\n</ul>\n<p>----</p>\n<p><strong>(12/15/2014) - 1.0</strong></p>\n<ul>\n<li>[*] Blog: Adjustments made to alignment CSS to work with W3 Total Cache</li>\n<li>[+] Typography: More fonts added</li>\n<li>[+] Typography: Filter added to subset</li>\n<li>[+] Colors: French translation added</li>\n</ul>\n<p>----</p>\n<p><strong>(11/17/2014) - 0.9</strong></p>\n<ul>\n<li>[!] Blog: Applied post image position to images using Page Header addon</li>\n</ul>\n<p>----</p>\n<p><strong>(11/17/2014) - 0.8</strong></p>\n<ul>\n<li>[*] Blog: Hiding post images works again</li>\n</ul>\n<p>----</p>\n<p><strong>(11/16/2014) - 0.7</strong></p>\n<ul>\n<li>[+] Page Header: Option to add background color</li>\n<li>[*] Page Header: Background image no longer required for other options</li>\n<li>[*] Page Header: Image resizer now uses BFI Thumb</li>\n<li>[+] Page Header: Option to move post header below the title</li>\n<li>[*] Secondary Nav: Mobile breakpoint increased to include tablets</li>\n<li>[!] Secondary Nav: Fix bug causing Trebuchet MS not to work</li>\n<li>[!] Colors: Navigation current text color wasn\'t working while navigation floating right</li>\n<li>[*] Colors: Change color of placeholder text to text color</li>\n<li>[!] Secondary Nav: Remove secondary navigation element if no menu is set</li>\n<li>[+] Blog: Add option to hide categories</li>\n<li>[+] Blog: Choose alignment of post image</li>\n<li>[+] Blog: Choose size of post image</li>\n<li>[+] Hooks: Added inside main content container hook</li>\n</ul>\n<p>----</p>\n<p><strong>(10/27/2014) - 0.6</strong></p>\n<ul>\n<li>[!] Typography: Fix bug with non Google fonts calling to Google</li>\n</ul>\n<p>----</p>\n<p><strong>(10/20/2014) - 0.5</strong></p>\n<ul>\n<li>[!] Disable Elements: Fix bug applying latest post setting to blog</li>\n<li>[*] Backgrounds: Upload buttons now use Media Library</li>\n<li>[!] Blog: Fix masonry spacing issues</li>\n<li>[*] Page Header: Code cleanup</li>\n</ul>\n<p>----</p>\n<p><strong>(10/11/2014) - 0.4</strong></p>\n<ul>\n<li>[+] Copyright: Allow shortcodes in Copyright</li>\n<li>[*] Copyright: Changed copyright field to textarea</li>\n<li>[!] Blog: Fix mobile bug in masonry blog on iPhone</li>\n<li>[*] Spacing: Change separator spacing from padding to margin</li>\n<li>[*] Translation files updated</li>\n</ul>\n<p>----</p>\n<p><strong>(10/2/2014) - 0.3</strong></p>\n<ul>\n<li>[!] Blog: Not able to hide author on single posts</li>\n<li>[!] Backgrounds: Background images double in content if One Container is set</li>\n<li>[+] GP Hooks: Add After Footer Widgets to GP Hooks</li>\n<li>[+] Secondary Nav: Option to change \"Menu\" label on mobile secondary navigation</li>\n<li>[!] Page Header: buddypress fix</li>\n</ul>\n<p>----</p>\n<p><strong>(9/17/2014) - 0.2</strong></p>\n<ul>\n<li>[*] Make Google Fonts call more robust</li>\n<li>[!] Fix secondary navigation link color when floating right</li>\n<li>[+] Background image options added to secondary navigation</li>\n<li>[+] File structures cleaned up</li>\n<li>[+] Masonry width and most recent post masonry width options added</li>\n</ul>\n<p>----</p>\n<p><strong>(9/7/2014) - 0.1</strong></p>\n<ul>\n<li>Initial Release</li>\n</ul>\n\";}s:7:\"banners\";O:8:\"stdClass\":2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}s:5:\"icons\";s:6:\"a:0:{}\";s:11:\"description\";a:1:{i:0;s:124:\"<p>GP Premium is one powerful plugin that includes all of our awesome add-ons, which you can turn on and off as needed.</p>\n\";}s:9:\"changelog\";a:1:{i:0;s:67937:\"<p><strong>(6/12/2019) - 1.8.3</strong></p>\n<ul>\n<li>Menu Plus: Use flexbox for center aligned nav with nav branding</li>\n<li>Menu Plus: Center overlay off canvas exit button on mobile</li>\n<li>Menu Plus: Add alt tag to sticky nav logo</li>\n<li>Menu Plus: Set generate_not_mobile_menu_media_query filter based on mobile menu breakpoint</li>\n<li>Sections: Remember when text tab is active</li>\n<li>Sections: Disable visual editor if turned off in profile</li>\n<li>Typography: Add generate_google_font_display filter</li>\n<li>WooCommerce: Fix single product sidebar layout metabox option</li>\n<li>WooCommerce: Reduce carousel thumbnail max-width to 100px to match new thumbnail sizes</li>\n</ul>\n<p><strong>(5/2/2019) - 1.8.2</strong></p>\n<ul>\n<li>Elements: Use Page Hero site title color for mobile header site title</li>\n<li>Menu Plus: Give mobile header site title more left spacing</li>\n<li>Menu Plus: Fix nav search icon in sticky navigation when using nav branding in Firefox</li>\n<li>Site Library: Show Site Library tab even if no sites exist</li>\n<li>Site Library: Show an error message in Site Library if no sites exist</li>\n<li>Typography: Remove reference to generate_get_navigation_location() function</li>\n<li>WooCommerce: Remove quantity field arrows when using quantity buttons in Firefox</li>\n<li>WooCommerce: Remove extra border when loading quantity buttons</li>\n<li>WooCommerce: Use get_price_html() is sticky add to cart panel</li>\n</ul>\n<p><strong>(4/24/2019) - 1.8.1</strong></p>\n<ul>\n<li>Menu Plus: Revert sticky nav duplicate ID fix due to Cyrillic script bug</li>\n</ul>\n<p><strong>(4/24/2019) - 1.8.0</strong></p>\n<ul>\n<li>Blog: Apply columns filter to masonry grid sizer</li>\n<li>Colors: Merge Footer Widgets and Footer controls in Color panel</li>\n<li>Colors: Remove edit_theme_options capability to Customizer controls (set by default)</li>\n<li>Disable Elements: Make sure mobile header is disabled when primary navigation is disabled</li>\n<li>Elements: Add content width option in Layout Element</li>\n<li>Elements: Fix mobile header logo when mobile menu toggled</li>\n<li>Elements: Add generate_page_hero_location filter</li>\n<li>Elements: Add generate_elements_show_object_ids filter to show IDs in Display Rule values</li>\n<li>Elements: Prevent merged header wrap from conflicting with Elementor controls</li>\n<li>Elements: Change Container tab name to Content</li>\n<li>Elements: Add woocommerce_share option to Hooks</li>\n<li>Elements: Improve WPML compatibility</li>\n<li>Elements: Improve Polylang compatibility</li>\n<li>Elements: Prevent PHP notices when adding taxonomy locations to non-existent archives</li>\n<li>Elements: Add generate_mobile_cart_items hook to hook list</li>\n<li>Elements: Add generate_element_post_id filter</li>\n<li>Elements: Escape HTML elements inside Element textarea</li>\n<li>Elements: Add Beaver Builder templates to the Display Rules</li>\n<li>Menu Plus: Add mobile header breakpoint option</li>\n<li>Menu Plus: Add off canvas overlay option</li>\n<li>Menu Plus: Add navigation as header option</li>\n<li>Menu Plus: Remove navigation logo option if navigation as header set</li>\n<li>Menu Plus: Add sticky navigation logo option</li>\n<li>Menu Plus: Allow site title in mobile header instead of logo</li>\n<li>Menu Plus: Add option to move exit button inside the off canvas panel</li>\n<li>Menu Plus: Change Slideout Navigation name to Off Canvas Panel</li>\n<li>Menu Plus: Only re-focus after slideout close on escape key</li>\n<li>Menu Plus: Give close slideout event a name so it can be removed</li>\n<li>Menu Plus: Remove invalid transition-delay</li>\n<li>Menu Plus: Improve slideout overlay transition</li>\n<li>Menu Plus: Add mobile open/close icons to GPP font</li>\n<li>Menu Plus: Allow dynamic widget classes in off canvas panel (fixes WC range slider widget issue)</li>\n<li>Menu Plus: Basic compatibility with future SVG icons</li>\n<li>Menu Plus: Prevent duplicate IDs when sticky navigation is cloned</li>\n<li>Secondary Nav: Add dropdown direction option</li>\n<li>Secondary Nav: Basic compatibility with future SVG icons</li>\n<li>Sections: Fix section editor issues in WP 5.0</li>\n<li>Sections: Show Better Font Awesome icon in editor</li>\n<li>Sites: Re-design UI</li>\n<li>Sites: Add option to activate as a module like all the other modules</li>\n<li>Sites: Don\'t show backup options button if no options exist</li>\n<li>Sites: Make JS action classes more specific to the site library</li>\n<li>Sites: Set mime types of content.xml and widgets.wie</li>\n<li>Spacing: Add header padding option for mobile</li>\n<li>Spacing: Add widget padding option for mobile</li>\n<li>Spacing: Add footer widgets padding option for mobile</li>\n<li>Spacing: Add content separator option</li>\n<li>Spacing: Apply mobile menu item width to mobile bar only</li>\n<li>WooCommerce: Add option for mini cart in the menu</li>\n<li>WooCommerce: Add option to open off overlay panel on add to cart</li>\n<li>WooCommerce: Add option to open sticky add to cart panel on single products</li>\n<li>WooCommerce: Add option to add +/- buttons to the quantity fields</li>\n<li>WooCommerce: Add option to show number of items in cart menu item</li>\n<li>WooCommerce: Add option to choose single product image area width</li>\n<li>WooCommerce: Add color options for price slider widget</li>\n<li>WooCommerce: Use CSS grid for the product archives</li>\n<li>WooCommerce: Horizontally align add to cart buttons</li>\n<li>WooCommerce: Re-design the cart widget</li>\n<li>WooCommerce: Tighten up product info spacing</li>\n<li>WooCommerce: Improve product tab design to look more like tabs</li>\n<li>WooCommerce: Simplify single product image display</li>\n<li>WooCommerce: Use flexbox for quantity/add to cart alignment</li>\n<li>WooCommerce: Improve rating star styles</li>\n<li>WooCommerce: Use product alignment setting for related/upsell products</li>\n<li>WooCommerce: Remove bottom margin from product image</li>\n<li>WooCommerce: Organize colors in the Customizer</li>\n<li>WooCommerce: Remove title attribute from menu cart item</li>\n<li>WooCommerce: Improve coupon field design</li>\n<li>WooCommerce: Improve result count/ordering styling</li>\n<li>WooCommerce: Add gap around WC single product images</li>\n<li>WooCommerce: Remove arrow from checkout button</li>\n<li>WooCommerce: Hide view cart link on add to cart click</li>\n<li>WooCommerce: Organize CSS</li>\n<li>Introduce in-Customizer shortcuts</li>\n<li>Add generate_disable_customizer_shortcuts filter</li>\n</ul>\n<p><strong>(2/22/2019) - 1.7.8</strong></p>\n<ul>\n<li>Sites: Prevent future compatibility issues with Elementor by removing automatic URL replacement</li>\n</ul>\n<p><strong>(12/17/2018) - 1.7.7</strong></p>\n<ul>\n<li>Sites: Fix failed content import in specific PHP versions</li>\n</ul>\n<p><strong>(12/13/2018) - 1.7.6</strong></p>\n<ul>\n<li>Elements: Hide Add New button when opening saved Element with no type</li>\n<li>Sections: Show page title in Gutenberg when Sections are active</li>\n<li>Sections: Fix relative image URLs inside the Section editor</li>\n<li>Sites: Fix failed content/widget import in WP 5.0.1/4.9.9</li>\n<li>Sites: Fix no access to WooCommerce setup wizard</li>\n</ul>\n<p><strong>(11/21/2018) - 1.7.5</strong></p>\n<ul>\n<li>Colors: Improve block editor button color preview</li>\n<li>Menu Plus: Mobile menu items hidden behind content with higher z-index when sticky</li>\n<li>Menu Plus: Prevent mobile menu from covering mobile toggle when sticky</li>\n<li>Menu Plus: Don\'t close mobile menu if # is the whole URL</li>\n</ul>\n<p><strong>(11/19/2018) - 1.7.4</strong></p>\n<ul>\n<li>Colors: Fix navigation live color preview issues</li>\n<li>Colors: Move navigation parent item title down in Customizer</li>\n<li>Elements: Allow slashes in hook names</li>\n<li>General: Fix smooth scroll anchor location on mobile (requires GP 2.2)</li>\n<li>Menu Plus: Use https for navigation microdata</li>\n<li>Menu Plus: Remove header-image class from navigation and mobile header logos</li>\n<li>Menu Plus: Add navigation search height support to mobile header and sticky nav</li>\n<li>Typography: Include block editor button in live preview</li>\n</ul>\n<p><strong>(10/29/2018) - 1.7.3</strong></p>\n<ul>\n<li>Blog: Allow masonry to be turned off using a boolean filter</li>\n<li>Blog: Fix load more button appearing when not needed</li>\n<li>Blog: Remove infinite scroll load more button from WooCommerce archives</li>\n<li>Blog: Prevent content width option from applying to columns</li>\n<li>Elements: Fix empty object fields when Post Archive is set</li>\n<li>Elements: Allow slashes in custom hook field</li>\n<li>Elements: Allow multiple layout elements per condition</li>\n<li>Elements: Allow 0 value in mobile padding options</li>\n<li>Elements: Prevent PHP notice if $post isn\'t an object</li>\n<li>Gutenberg: Add initial support for live preview spacing of Gutenberg blocks</li>\n<li>Menu Plus: Add menu-item-align-right class to slideout toggle</li>\n<li>Menu Plus: Fix JS error in slideout navigation when no menu is set</li>\n<li>Sites: Fix image shadow on hover</li>\n<li>Sites: Add message when no plugins are needed</li>\n<li>Sites: Update custom link URL in menu items</li>\n<li>Sites: Prevent PHP warning in PHP 7.3</li>\n<li>Sites: Add generate_sites_ignore_plugins filter</li>\n<li>Sites: Fix WooCommerce setup wizard conflict with Site Library</li>\n<li>Sites: Fix PHP notices during WooCommerce setup wizard</li>\n<li>Typography: Add support for H1-H3 bottom margin options</li>\n<li>WooCommerce: Add menu-item-align-right class to cart menu item</li>\n<li>WooCommerce: Fix multi column product spacing on mobile</li>\n</ul>\n<p><strong>(8/20/2018) - 1.7.2</strong></p>\n<ul>\n<li>Elements: Fix admin body class spaces</li>\n<li>General: Fix JS error in anchors when smooth scroll class not added</li>\n<li>General: Fix sticky navigation offset when using smooth scroll</li>\n<li>WooCommerce: Apply Elementor Pro WC columns fix to Elementor Pro widget only</li>\n<li>WooCommerce: Fix BlockUI issue</li>\n</ul>\n<p><strong>(8/15/2018) - 1.7.1</strong></p>\n<ul>\n<li>Elements: Fix PHP error in PHP 5.3</li>\n<li>Elements: Fix Choose Element not showing due to some third party plugins</li>\n</ul>\n<p><strong>(8/14/2018) - 1.7</strong></p>\n<p>This update introduces a new premium module called \"Elements\". Learn more <a href=\"https://generatepress.com/gp-premium-1-7/\" target=\"_blank\" rel=\"noopener\">here</a>.</p>\n<ul>\n<li>Blog: Prevent masonry container jump on load</li>\n<li>Blog: Change “Full” label to “Full Content”</li>\n<li>New: Elements module</li>\n<li>Elements: Header element (replaces the Page Header module)</li>\n<li>Elements: Hook element (replaces the Hooks module)</li>\n<li>Elements: Layout element</li>\n<li>Hooks: Replaced by Elements module</li>\n<li>Hooks: Move link to legacy hooks inside Elements area</li>\n<li>Import/Export: Re-write code</li>\n<li>Import/Export: Import activated modules</li>\n<li>Menu Plus: Fix slideout close button alignment/color issues</li>\n<li>Menu Plus: Fix slideout issue with relative main navigation CSS</li>\n<li>Menu Plus: Fix ul display inside slideout navigation widget</li>\n<li>Menu Plus: Change Slideout Navigation theme location label to Slideout Menu</li>\n<li>Menu Plus: Close slideout navigation when a link within it is clicked</li>\n<li>Menu Plus: Show slideout navigation theme location option after Primary</li>\n<li>Menu Plus: Improve a11y of slideout navigation</li>\n<li>Menu Plus: Add .site-wrapper class compatibility to sticky nav</li>\n<li>Menu Plus: Prepare offside.js for future button dropdown menu toggle</li>\n<li>Menu Plus: Add .slideout-exit class to close slideout</li>\n<li>Page Header: Replaced by Elements module</li>\n<li>Page Header: Move link to legacy Page Headers inside Elements area</li>\n<li>Page Header: Fix hentry Google Search Console errors</li>\n<li>Page Header: Fix clearing element issue</li>\n<li>Page Header: WPML fix in global locations</li>\n<li>Page Header: Prevent PHP notices within Elementor Library area</li>\n<li>Page Header: Fix retina logo issue (in new Elements module only)</li>\n<li>Page Header: Show original logo in sticky navigation (in new Elements module only)</li>\n<li>Page Header: Add mobile header logo option (in new Elements module only)</li>\n<li>Secondary Nav: Show theme location option after Primary</li>\n<li>Sections: Allow Sections when Gutenberg is activated</li>\n<li>Sections: Hide Gutenberg editor when Sections enabled</li>\n<li>Sections: Fix text domain issues</li>\n<li>Sections: Use regular checkbox for use sections</li>\n<li>Spacing: Add future support for sub-menu width option</li>\n<li>Sites: Fix .complete class conflicts</li>\n<li>Sites: Add GENERATE_DISABLE_SITE_LIBRARY constant</li>\n<li>Sites: Remove verified provider debug notice</li>\n<li>WooCommerce: Add shopping bag and shopping basket icon options to cart menu item</li>\n<li>WooCommerce: Fix WC error with non-product post types</li>\n<li>WooCommerce: Fix too many WC star issue</li>\n<li>WooCommerce: Add CSS for cart menu item in secondary nav</li>\n<li>WooCommerce: Add WC menu item location filter to mobile cart</li>\n<li>WooCommerce: Fix issue with disabling sale badge when set to overlay</li>\n<li>WooCommerce: Add option to disable/enable sale badge on single product pages</li>\n<li>WooCommerce: Fix my account icon on mobile</li>\n<li>General: Fix smooth scroll issues on mobile</li>\n<li>General: Improve overall smooth scroll functionality</li>\n<li>General: Add generate_smooth_scroll_elements filter</li>\n<li>General: Move GPP icons from Font Awesome to custom icons</li>\n<li>A11y: Add context to all “Contained” strings</li>\n</ul>\n<p><strong>(3/28/2018) - 1.6.2</strong></p>\n<ul>\n<li>Sites: Prevent PHP notice when Sites can\'t be reached</li>\n</ul>\n<p><strong>(3/28/2018) - 1.6.1</strong></p>\n<ul>\n<li>Blog: Fix infinite scroll masonry issues in Firefox</li>\n<li>General: Improve smooth scroll script</li>\n<li>Import/Export: Show modules to export if defined in wp-config.php</li>\n<li>Sites: Prevent PHP warnings if no Sites are found</li>\n<li>Sites: Add generate_disable_site_library filter to disable Site Library</li>\n<li>Sites: Improve page builder filter display</li>\n<li>Sites: Prevent duplicate site display after details button in preview clicked</li>\n<li>WooCommerce: Add missing icons if Font Awesome is turned off</li>\n</ul>\n<p><strong>(3/22/2018) - 1.6</strong></p>\n<ul>\n<li>New: Sites module</li>\n<li>Translations: Merge all translations into gp-premium text domain</li>\n<li>General: Add smooth scroll option</li>\n<li>General: Move batch processing files into library</li>\n<li>General: Add GPP icon set</li>\n<li>General: WPCS and PHPCS improvements</li>\n<li>Blog: Fix PHP 7.2 warning</li>\n<li>Blog: Fix Safari infinite scroll issues with srcset</li>\n<li>Blog: Refresh masonry on infinite scroll append</li>\n<li>Blog: Remove infinite scroll on 404 and no results pages</li>\n<li>Blog: Fix Yoast SEO breaking columns with certain settings</li>\n<li>Blog: Re-layout masonry on load</li>\n<li>Colors: Add slideout navigation color options</li>\n<li>Colors: Merge navigation + sub-navigation options into one section</li>\n<li>Import/Export: One click export and import</li>\n<li>Menu Plus: Re-build slideout navigation to use vanilla JS</li>\n<li>Menu Plus: Add slideout navigation widget area</li>\n<li>Menu Plus: Add close icon to slideout navigation</li>\n<li>Menu Plus: Set sticky nav ID on refresh if stuck</li>\n<li>Menu Plus: Allow WPML to modify Page Header select metabox</li>\n<li>Menu Plus: Re-build mobile header using flexbox</li>\n<li>Menu Plus: Use CSS for slideout navigation icon</li>\n<li>Menu Plus: Fix sticky navigation slide down in Safari</li>\n<li>Menu Plus: Add workaround for iOS sticky nav search issue</li>\n<li>Page Header: Improve Page Header metabox UI on smaller screens</li>\n<li>Page Header: Use author display name in template tag</li>\n<li>Page Header: Add generate_page_header_id filter</li>\n<li>Page Header: Fix vertical center issues in IE11</li>\n<li>Page Header: Remove flexibility.js for IE8 support</li>\n<li>Page Header: Fix GiveWP compatibility</li>\n<li>Secondary Navigation: Re-build CSS</li>\n<li>Sections: Disable Gutenberg if Sections are activated</li>\n<li>Sections: Add generate_sections_gutenberg_compatible filter</li>\n<li>Spacing: Fix one container widget padding preview in Customizer</li>\n<li>Typography: Add Slideout Navigation typography options</li>\n<li>WooCommerce: Clear up-sells when directly after entry content</li>\n<li>WooCommerce: Fix placeholder text cut off in Firefox</li>\n<li>WooCommerce: Use GPP icon set for cart menu item</li>\n<li>WooCommerce: Load .js in the footer</li>\n<li>Update Background Process library</li>\n<li>Clean up code license key activation code</li>\n<li>Remove verify.php</li>\n<li>Prevent PHP notice when saving empty license</li>\n<li>Add beta testing checkbox to license key area</li>\n</ul>\n<p><strong>(12/4/2017) - 1.5.6</strong></p>\n<ul>\n<li>Backgrounds: Make position control description translatable</li>\n<li>Blog: Fix disabled page featured images if post featured images are disabled</li>\n<li>Blog: Let WP handle featured image alt attributes</li>\n<li>Colors: Fix text domain</li>\n<li>Colors: Improve inconsistent live preview behavior</li>\n<li>Menu Plus: Prep desktop only slideout icon for GP 2.0</li>\n<li>Page Header: Allow unfiltered HTML in content if user is allowed</li>\n<li>Page Header: Only load CSS file if content is added</li>\n<li>Typography: Fix h5 font size not appearing in GP 2.0</li>\n</ul>\n<p><strong>(11/22/2017) - 1.5.5</strong></p>\n<ul>\n<li>Blog: Fix broken images while using Infinite Scroll in Safari</li>\n<li>Typography: Fix first variant not appearing when you select a font</li>\n<li>Typography: Fix select issues when plugins load old versions of the select2 library</li>\n</ul>\n<p><strong>(11/18/2017) - 1.5.4</strong></p>\n<ul>\n<li>Sections: Fix Visual/Text tab in WP 4.9</li>\n<li>Sections: Fix Content/Settings tab in WP 4.9</li>\n</ul>\n<p><strong>(11/14/2017) - 1.5.3</strong></p>\n<ul>\n<li>Blog: Fix masonry filter not working on custom post type archives</li>\n<li>Blog: Fix resized featured images when page header resizer is enabled</li>\n<li>Blog: Fix broken Customizer toggles in Safari</li>\n<li>Page Header: Fix PHP notice when saving posts</li>\n<li>Fix/add various gettext values</li>\n</ul>\n<p><strong>(11/10/2017) - 1.5.2</strong></p>\n<ul>\n<li>Backgrounds: Fix issue with saving background image options</li>\n</ul>\n<p><strong>(11/9/2017) - 1.5.1</strong></p>\n<ul>\n<li>Blog: Make infinite scroll container selector more specific</li>\n<li>Page Header: Fix background video when container is contained</li>\n<li>Page Header: Remove featured image on attachment pages</li>\n</ul>\n<p><strong>(11/8/2017) - 1.5</strong></p>\n<ul>\n<li>Backgrounds: Rebuild Customizer control</li>\n<li>Blog: Move Blog panel into the Layout panel</li>\n<li>Blog: Migrate options from select dropdowns to checkboxes where applicable</li>\n<li>Blog: Merge masonry + column options into one area</li>\n<li>Blog: Add new post meta visibility options for single posts</li>\n<li>Blog: Replace old image resizer (aq_resize) with Image Processing Queue (reload your site once or twice to build new images)</li>\n<li>Blog: Add single post featured image options</li>\n<li>Blog: Add page featured image options</li>\n<li>Blog: Remove masonry meta box</li>\n<li>Blog: Add option to remove padding around centered featured images</li>\n<li>Blog: Add option to turn read more link into button</li>\n<li>Blog: Add option to turn on infinite scroll regardless of layout</li>\n<li>Blog: Use infinite scroll with or without a load more button</li>\n<li>Blog: Make read more links better for accessibility</li>\n<li>Blog: Migrate single post page header position option to single featured image location option</li>\n<li>Blog: Remove ellipses if excerpt is set to 0</li>\n<li>Blog: Change style.css handle to include generate prefix</li>\n<li>Blog: Remove unnecessary IE8 support</li>\n<li>Blog: Add alt attribute to featured images</li>\n<li>Blog: Fix pagination spacing when One Container is set</li>\n<li>Blog: Fix column/masonry spacing at 768px</li>\n<li>Colors: Add select input live preview settings</li>\n<li>Colors: Fix button labels</li>\n<li>Copyright: Move Copyright section into Layout panel</li>\n<li>Menu Plus: Fix mobile menu logo bug when navigation is set to float right</li>\n<li>Menu Plus: Fix no transition sticky navigation bug while on mobile</li>\n<li>Page Header: Replace old image resizer (aq_resize) with Image Processing Queue (reload your site once or twice to build new images)</li>\n<li>Page Header: Don\'t use global page header locations if not published</li>\n<li>Page Header: Sanitize page header content when saved to database</li>\n<li>Page Header: Make sure Elementor sections are accessible when page header is merged</li>\n<li>Page Header: Prepare transparent color picker for WP 4.9 changes</li>\n<li>Page Header: Fix background video in Safari 11</li>\n<li>Page Header: Add global locations for taxonomies</li>\n<li>Page Header: Add {{custom_field.description}} template tag to taxonomies (categories etc..)</li>\n<li>Page Header: Add ID to page header element</li>\n<li>Page Header: Fix individual taxonomy page header control not appearing on Toolset created taxonomies</li>\n<li>Page Header: Ensure jQuery Vide (video background) script only loads when needed</li>\n<li>Page Header: Fix custom images not displaying</li>\n<li>Page Header: Fix image link option not working</li>\n<li>Typography: Lay groundwork for H6 options</li>\n<li>Typography: Space out heading typography options</li>\n<li>Typography: Add System Stack option</li>\n<li>Typography: Fix Google Font variant control in WP 4.9</li>\n<li>Sections: Show Envira button</li>\n<li>Sections: Show Gridable button</li>\n<li>Sections: Prepare transparent color picker for WP 4.9 changes</li>\n<li>WooCommerce: Add filter to cart menu item location</li>\n<li>WooCommerce: Better activation compatibility with multi-site</li>\n<li>WooCommerce: Use wc_get_cart_url() for menu item</li>\n<li>German translations updated (Thanks, Daniel!)</li>\n</ul>\n<p><strong>(8/18/2017) - 1.4.3</strong></p>\n<ul>\n<li>Page Header: Pass args to post_thumbnail_html filter</li>\n<li>Page Header: Allow custom field template tags on pages</li>\n<li>Page Header: Re-add generate_page_header_video_loop filter</li>\n<li>Page Header: Add generate_page_header_video_muted filter</li>\n<li>Page Header: Remove taxonomy title if page header has title</li>\n<li>WooCommerce: Improve disabled WC button styling</li>\n</ul>\n<p><strong>(8/11/2017) - 1.4.2</strong></p>\n<ul>\n<li>Page Header: Improve inner container</li>\n<li>Page Header: Allow contained page header even when position:absolute is set</li>\n<li>Page Header: Apply page header text color to headings in page header</li>\n<li>WooCommerce: Fix mobile columns issue</li>\n</ul>\n<p><strong>(8/9/2017) - 1.4.1</strong></p>\n<ul>\n<li>Page Header: Fix error in Customizer when using PHP version &lt; 5.5</li>\n</ul>\n<p><strong>(8/9/2017) - 1.4</strong></p>\n<ul>\n<li>Colors: Add back to top button color options</li>\n<li>Colors: Add h4-h5 color options</li>\n<li>Colors: Move button color options into own Buttons section</li>\n<li>Hooks: Show PHP execution message to admins only</li>\n<li>Menu Plus: Improve disabling of native mobile menu when slide-out is set</li>\n<li>Menu Plus: Fix sticky mobile menu when navigation is in sidebar</li>\n<li>Menu Plus: Fix invisible navigation when slide sticky is shown/hidden quickly</li>\n<li>Page Header: Complete code re-write</li>\n<li>Page Header: Turn Page Headers into a custom post type (CPT)</li>\n<li>Page Header: Can be applied per page, or globally (pages, posts, categories, CPTs etc..)</li>\n<li>Page Header: Template tags can be used in Page Header content (page title, author, date)</li>\n<li>Page Header: Turn bg color options in RGBA picker</li>\n<li>Page Header: New use bg color as image overlay option</li>\n<li>Page Header: Re-write parallax feature</li>\n<li>Page Header: Migrate Blog Page Header in Customizer into a CPT post on update</li>\n<li>Page Header: Add \"Inner Container\" width option.</li>\n<li>Page Header: Add menu background color (instead of forcing transparent)</li>\n<li>Page Header: Show content options all the time</li>\n<li>Page Header: Force full width page header if merge is set</li>\n<li>Page Header: Use set default color palettes in color pickers</li>\n<li>Page Header: New left/right padding option</li>\n<li>Sections: Make background color rgba color picker</li>\n<li>Sections: Add background color overlay options</li>\n<li>Sections: Use set default color palettes in color pickers</li>\n<li>Sections: Fix dropdown z-index bug introduced in WP 4.8.1</li>\n<li>Typography: Add H1-H3 line-height options</li>\n<li>Typography: Add H4-H5 typography options</li>\n<li>Typography: Add footer/copyright area typography options</li>\n<li>Typography: Add button typography options</li>\n<li>Typography: Rename Content Customizer section to Headings</li>\n<li>Typography: Add widget title separating space option</li>\n<li>Typography: Make fonts in Customizer search-able</li>\n<li>Typography: Allow Google Font variants to be added/removed</li>\n<li>WooCommerce: Fix columns issue on some pages</li>\n<li>WooCommerce: Fix mobile columns when using shortcode</li>\n<li>WooCommerce: Fix extra spacing in empty cart menu item</li>\n<li>WooCommerce: Show Cart text if no icon</li>\n<li>WooCommerce: Make cart menu item filterable</li>\n<li>WooCommerce: Fix sales badge height in IE11</li>\n</ul>\n<p><strong>(6/19/2017) - 1.3.1</strong></p>\n<ul>\n<li>Hooks: Add notice to disable PHP execution if DISALLOW_FILE_EDIT is defined</li>\n<li>Menu Plus: Fix RTL spacing in slide-out menu</li>\n<li>Menu Plus: Fix bug where sticky nav was interfering with mobile header</li>\n<li>Menu Plus: Merge all sticky nav transitions into one script</li>\n<li>Menu Plus: Re-write fade and slide sticky navigation transitions</li>\n<li>Menu Plus: Add new option to hide sticky navigation while scrolling down</li>\n<li>WooCommerce: Add padding to terms on checkout</li>\n<li>WooCommerce: Make shop page options work when shop is set to category display</li>\n<li>WooCommerce: Style mark element</li>\n<li>WooCommerce: Remove border/padding from checkout fields</li>\n<li>WooCommerce: Remove color from my account arrows</li>\n<li>WooCommerce: Adjust ship to address padding</li>\n<li>WooCommerce: Fix ul elements when WC image is floating</li>\n<li>WooCommerce: Fix pagination clearing issue</li>\n<li>WooCommerce: Add pt_BR translation</li>\n<li>WooCommerce: Fix spacing issue with menu item cart icon and certain fonts</li>\n<li>Fix double forward slashes in some script calls inside Customizer</li>\n<li>Add WPML config file</li>\n</ul>\n<p><strong>(5/17/2017) - 1.3</strong></p>\n<ul>\n<li>Backgrounds: Fix big with 100% auto sizing option</li>\n<li>Colors: Add WooCommerce add-on colors</li>\n<li>Import/Export: Add WooCommerce add-on</li>\n<li>Menu Plus: Improve Navigation Logo sizing</li>\n<li>Menu Plus: Re-write no transition sticky navigation</li>\n<li>Secondary Nav: Add padding to sides of top bar when merged</li>\n<li>Secondary Nav: Only load resources if the Secondary theme location is set</li>\n<li>Sections: Fix mix up of left/right content padding</li>\n<li>Spacing: New mobile menu item width/height options</li>\n<li>Spacing: New sticky menu item height option</li>\n<li>Spacing: New slide-out menu item height option</li>\n<li>Typography: New mobile menu item font size option</li>\n<li>WooCommerce: Introducing new WooCommerce add-on</li>\n<li>Move all Customizer controls and helper functions into globally accessible library</li>\n<li>Rebuilt range slider control to include responsive icons which display responsive controls</li>\n<li>Rebuilt typography control reducing number of controls from 50 to 10 (performance)</li>\n<li>Updated the automatic updater function</li>\n<li>Add filter to enable beta updates: generate_premium_beta_tester</li>\n</ul>\n<p><strong>(3/15/2017) - 1.2.96</strong></p>\n<ul>\n<li>Blog: Fix option sanitizing for read more and masonry loading options</li>\n<li>Copyright: Fix option sanitizing for Customizer textarea</li>\n<li>Disable Elements: Fix PHP notice when saving post</li>\n<li>Menu Plus: Fix option sanitizing for mobile menu label option</li>\n<li>Page Header: Fix PHP notice when saving post</li>\n<li>Secondary Nav: Fix option sanitizing for mobile menu label option</li>\n</ul>\n<p><strong>(3/14/2017) - 1.2.95</strong></p>\n<ul>\n<li>Add notice if GeneratePress theme isn\'t activated</li>\n<li>Add notice if GeneratePress theme update is available</li>\n<li>General code cleanup and optimization</li>\n<li>Backgrounds: Use new CSS class to write dynamic CSS</li>\n<li>Backgrounds: Deprecate Generate_Backgrounds_Customize_Misc_Control</li>\n<li>Backgrounds: Add options to the new top bar widget area</li>\n<li>Blog: Add generate_excerpt_more_output filter to read more link</li>\n<li>Blog: Add generate_content_more_link_output filter to read more link when more tag is added</li>\n<li>Blog: Remove ellipses from Read more link default</li>\n<li>Blog: Use the_title_attribute() where necessary</li>\n<li>Blog: Add generate_excerpt_length filter</li>\n<li>Colors: Add options for new top bar widget area</li>\n<li>Copyright: General code clean up</li>\n<li>Disable Elements: Add new Top Bar widget area to disable options</li>\n<li>Disable Elements: Change Post Image label to Featured Image</li>\n<li>Disable Elements: Completely remove header HTML if set to disable</li>\n<li>Disable Elements: Completely remove navigation HTML if set to disable</li>\n<li>Disable Elements: Completely remove footer HTML if set to disable</li>\n<li>Disable Elements: Add generate_metabox_capability filter to meta box</li>\n<li>Hooks: Update jQuery cookie library</li>\n<li>Hooks: Add new GENERATE_HOOKS_DISALLOW_PHP constant to allow users to disable PHP execution</li>\n<li>Import Export: Verify correct option names</li>\n<li>Menu Plus: Change Navigation Logo Position label to Navigation Logo Placement</li>\n<li>Menu Plus: Make sure sticky.js only enqueues if absolutely necessary</li>\n<li>Menu Plus: Move Sticky Navigation options into their own section</li>\n<li>Menu Plus: Move Slide-out Navigation options into their own section</li>\n<li>Menu Plus: Fix slight icon width change when toggling slide-out navigation</li>\n<li>Menu Plus: Close slide-out menu on item click</li>\n<li>Page Header: Fix top margin when full width header is below the header</li>\n<li>Page Header: Use the_title_attribute() where necessary</li>\n<li>Page Header: Change \"Position\" labels to \"Location\"</li>\n<li>Page Header: Add new generate_page_header_metabox_capability filter to meta box</li>\n<li>Page Header: Prevent undefined index notices</li>\n<li>Secondary Nav: Fix sub-navigation background, text and image variables</li>\n<li>Secondary Nav: Add unit to value if it exists allowing 0px values</li>\n<li>Secondary Nav: Move background image options into the Backgrounds add-on</li>\n<li>Secondary Nav: Move spacing options into the Spacing add-on</li>\n<li>Secondary Nav: Move typography options into the Typography add-on</li>\n<li>Secondary Nav: Move color options into the Colors add-on</li>\n<li>Secondary Nav: Add option to merge with new top bar widget area</li>\n<li>Secondary Nav: Fix dropdown menu arrow spacing in live preview</li>\n<li>Secondary Nav: Use custom color palettes</li>\n<li>Sections: Improve CSS output</li>\n<li>Sections: Remove sections-no-sidebars class if Sections aren\'t activated</li>\n<li>Spacing: Improve mobile/non-mobile live previews in Customizer</li>\n<li>Spacing: Make sidebar width options range sliders</li>\n<li>Spacing: Add options for new top bar widget area</li>\n<li>Spacing: Add ability to link all 4 spacing controls together</li>\n<li>Spacing: Add all 4 sides to mobile content padding</li>\n<li>Spacing: Fix Customizer experience when switching between one container and separate containers</li>\n<li>Typography: Improve mobile/non-mobile live previews in Customizer</li>\n<li>Typography: Add options for new top bar widget area</li>\n<li>Typography: Update list of available fonts</li>\n<li>pt_PT translations added - thank you Pedro!</li>\n</ul>\n<p><strong>(1/25/2017) - 1.2.94</strong></p>\n<ul>\n<li>Menu Plus: Fix contained sticky menu with no transition + floating bug</li>\n</ul>\n<p><strong>(1/24/2017) - 1.2.93</strong></p>\n<ul>\n<li>Backgrounds: Fix 100% width option</li>\n<li>Blog: Change Post Image label to Featured Image</li>\n<li>Blog: Fully remove featured image if it\'s set to hide</li>\n<li>Colors: Add transparency slider to all background elements</li>\n<li>Colors: Remove defaults and dynamic CSS functions - the GP theme handles this</li>\n<li>Colors: Add new generate_default_color_palettes filter to set up default color palettes</li>\n<li>Copyright: Use new copyright filter if possible</li>\n<li>Disabe Elements: Hide mobile header if navigation is disabled</li>\n<li>Menu Plus: Remove classie.js</li>\n<li>Menu Plus: Add .navigation-stick class to all sticky menu transitions</li>\n<li>Menu Plus: Prevent slide-out navigation jump on desktop</li>\n<li>Menu Plus: Change Sticky Effect label to Sticky Transition</li>\n<li>Menu Plus: Clean up dynamic CSS</li>\n<li>Menu Plus: Add .navigation-logo class to the navigation logo</li>\n<li>Menu Plus: Rebuild and simplify navigation logo CSS</li>\n<li>Menu Plus: Add live preview to navigation logo height</li>\n<li>Menu Plus: Add new generate_navigation_logo to the Navigation Logo URL</li>\n<li>Menu Plus: Fix mixing up of slide-out and search icon when sticky and floating left/right</li>\n<li>Page Header: Add parallax speed filter - generate_page_header_parallax_speed</li>\n<li>Page Header: Make sure wp.media javascript object exist to avoid potential JS errors</li>\n<li>Page Header: Make parallax work when page header is set to contained width</li>\n<li>Page Header: Add generate_metabox_capability to Page Header meta box</li>\n<li>Page Header: Add new option to overwrite Navigation Logo per page</li>\n<li>Page Header: Fix full screen page header height when content is longer than the screen</li>\n<li>Secondary Nav: Change Navigation Position to Navigation Location</li>\n<li>Secondary Nav: Add defaults to the style.css and only add dynamic CSS if needed</li>\n<li>Secondary Nav: Improve mobile menu CSS</li>\n<li>Sections: Add new Section ID field</li>\n<li>Spacing: Fix instant preview for masonry and columns</li>\n<li>Spacing: Add size slider to the separator options</li>\n<li>Spacing: Add mobile content padding option</li>\n<li>Spacing: Improve live previewing performance in the Customizer</li>\n<li>Spacing: Remove defaults and dynamic CSS functions - the GP theme handles this</li>\n<li>Spacing: Set left and right footer widget area padding if it\'s set to 0</li>\n<li>Spacing: Clean up sidebar width code</li>\n<li>Spacing: Change range slider style to fit core WP style</li>\n<li>Typography: Move mobile font size options into their respective sections</li>\n<li>Typography: Remove defaults and dynamic CSS functions - the GP theme handles this</li>\n<li>Typography: Change generate_display_google_fonts() function to generate_enqueue_google_fonts()</li>\n<li>Typography: Change range slider style to fit core WP style</li>\n<li>Change license key field from text to password</li>\n<li>Czech translation updated</li>\n<li>German translation updated</li>\n<li>Brazilian translation added</li>\n<li>Italian translated updated</li>\n</ul>\n<p><strong>(11/29/2016) - 1.2.92</strong></p>\n<ul>\n<li>Blog: Fix category title and load more alignment while using masonry</li>\n<li>Blog: Fix masonry spacing on mobile</li>\n<li>Blog: Simplify masonry spacing</li>\n<li>Blog: Simplify columns spacing</li>\n<li>Menu Plus: Fix alignment jump when browser is zoomed in and resized down to 768px</li>\n<li>Menu Plus: Add generate_logo_title filter to sticky logo and mobile header logo</li>\n<li>Menu Plus: Add spacing to the menu logo when the inner navigation is set to full width</li>\n<li>Menu Plus: Fix navigation search issue with no transition sticky menu</li>\n<li>Menu Plus: Don\'t float mobile header navigation if no logo is set</li>\n<li>Typography: Adjust typography name sanitization function name to avoid errors with old GP versions</li>\n<li>Typography: Remove parameter from generate_display_google_fonts to avoid warning with child theme generators</li>\n<li>Typography: Add body line height option</li>\n<li>Typography: Add paragraph margin option</li>\n<li>Typography: Reduce copyright/footer font size default to 14px</li>\n<li>Typography: Add reset button to all size sliders</li>\n<li>Secondary Nav: Remove CSS which stops floating navigation at 1024px</li>\n<li>Secondary Nav: Fix jump when removing navigation in the Customizer</li>\n<li>Secondary Nav: New option: Inner navigation width</li>\n<li>Secondary Nav: Add reset button to font size slider</li>\n<li>Secondary Nav: Allow transitions on menu items</li>\n<li>Sections: Fix bug where error would happen if the user isn\'t using at least WordPress 4.5</li>\n<li>Sections: Remove GP theme grid dependency in admin</li>\n<li>Sections: Allow oembed in section content</li>\n<li>Sections: Use jQuery.on() instead of delegate()</li>\n<li>Sections: Remove unnecessary files</li>\n<li>Spacing: Prevent warning caused by wrong version constant</li>\n<li>Page Header: New filter: generate_get_blog_page_header - makes it possible to set the blog page header under different conditions</li>\n<li>Page Header: Improve full height page header functionality on mobile/orientation change</li>\n<li>Page Header: Remove fixed background attachment from parallax background image to help preserve image ratio</li>\n<li>Add prompt to add license key in Plugins area if it isn\'t activated and updates are available</li>\n<li>Move all language files into the /langs/ folder</li>\n<li>Reduce length of some text domains to avoid updating issue with some servers</li>\n<li>Chinese translations added - thanks Alfred!</li>\n<li>Portuguese translation added - thanks Alvaro!</li>\n<li>Russian translations updated - thanks Alex!</li>\n<li>German translations updated - thanks Daniel!</li>\n</ul>\n<p><strong>(17/10/2016) - 1.2.91</strong></p>\n<ul>\n<li>Menu Plus: Fix bug where navigation logo wasn\'t displaying when effect is set to None</li>\n<li>Menu Plus: Fix bug where mobile header javascript was showing up when it shouldn\'t</li>\n<li>Sections: Add Shortcodes Ultimate compatibility</li>\n<li>Page Header: Fix Italian translation</li>\n<li>Page Header: Only show metabox on public post types</li>\n<li>Page Header: Fully re-design metabox</li>\n<li>Page Header: Add padding unit option (px or %)</li>\n<li>Blog: Make excerpt length value update immediately in Customizer</li>\n<li>Blog: Improve masonry functionality</li>\n<li>Russian translations updated - massive thanks to Alexey!</li>\n</ul>\n<p><strong>(2/10/2016) - 1.2.90</strong></p>\n<ul>\n<li>Prevent direct access to all files</li>\n<li>All Czech translations updated (thanks Ondrej!)</li>\n<li>Copyright: Improve Customizer experience</li>\n<li>Sections: Completely re-designed and re-built Sections</li>\n<li>Sections: Section content is now saved into your default editor on update/save. This prevents theme-lock, meaning your content will still exist even if you remove Sections.</li>\n<li>Sections: Send to default editor button removed as the before removes the need for it</li>\n<li>Sections: Add bottom &amp; top padding unit option (px or %)</li>\n<li>Page Header: Add generate_page_header_video_loop filter to disable looping of the page header video</li>\n<li>Page Header: Add option to remove the page header from single posts</li>\n<li>Page Header: Make number only inputs only accepts numbers</li>\n<li>Page Header: Force page header above the content if merged option is set</li>\n<li>Page Header: Disable automatic check for background video posters if no image is set</li>\n<li>Page Header: Use featured image as background image if no page header image is set</li>\n<li>Spacing: Remove duplicate menu item height CSS</li>\n<li>Spacing: Make inputs number only</li>\n<li>Spacing: All options are now instant preview</li>\n<li>Blog: Make post image sizes and excerpt length inputs number only</li>\n<li>Blog: Force full width masonry items on mobile</li>\n<li>Blog: Show Blog panel even when we\'re not viewing the blog in the Customizer</li>\n<li>Menu Plus: Reduce space between menu toggle and search icon on mobile with menu logo enabled</li>\n<li>Menu Plus: Show navigation logo option and navigation logo position option even if sticky navigation isn\'t enabled</li>\n<li>Menu Plus: Optimize javascript and put it all in files instead of in wp_footer</li>\n<li>Menu Plus: Allow navigation logo to show in sidebar navigation causing a sidebar logo effect</li>\n<li>Menu Plus: Float mobile header to the right on RTL installations</li>\n<li>Typography: Add new filter: generate_typography_variants</li>\n<li>Typography: Make font size, weight and decoration instant preview</li>\n<li>Typography: Only show top 200 popular Google Fonts in Customizer (increases Customizer performance)</li>\n<li>Typography: generate_number_of_fonts filter added so you can choose how many fonts to include in the Customizer list</li>\n<li>Typography: Remove 2 database queries</li>\n<li>Typography: Add Segoe UI font to default list</li>\n<li>Typography: Revamp how Google fonts get their category and variants (increase front end performance)</li>\n<li>Colors: Make all colors instant preview</li>\n<li>Secondary Navigation: Colors are now instant preview</li>\n<li>Secondary Navigation: Typography font weight, transform and size are now instant preview</li>\n<li>Secondary Navigation: Layout options are now instant preview</li>\n<li>Hooks: Disable spell check in hook textareas</li>\n<li>Hooks: Fix floating box issue on RTL installations</li>\n<li>Backgrounds: Use default WordPress image uploader customizer control</li>\n<li>Customizer: All Customizer controls are now rendered in javascript/json - big +1 for performance</li>\n</ul>\n<p><strong>(7/23/2016) - 1.2.89</strong></p>\n<ul>\n<li>Fix translations</li>\n<li>GP Hooks: Add new filter: generate_hooks_capability - change the capability for users who can edit hooks</li>\n<li>Disable Elements: Remove metabox from attachment post type</li>\n<li>Page Header: Fix issue where merged header navigation colors weren\'t working</li>\n<li>Page Header: Remove metabox from the attachment post type</li>\n<li>Menu Plus: Fix sticky menu not unsticking if it\'s the very top element</li>\n</ul>\n<p><strong>(7/16/2016) - 1.2.88</strong></p>\n<ul>\n<li>GP Premium: Cut down unnecessary folders to prevent update failures on some servers</li>\n<li>Page Header: Add a new option in Advanced Settings: Place content behind header (sliders etc..)</li>\n<li>Page Header: Fix header and navigation alignment in vertical centered page header when contained</li>\n<li>Sections: Rename template file to shorter name</li>\n<li>Typography: Rename control file to shorter name</li>\n<li>Copyright: Fix/improve live preview of copyright in the Customizer</li>\n<li>Blog: Show the read more label setting for both excerpt and full content settings</li>\n<li>Menu Plus: Fix sticky menu stopping at the bottom of the Page Header</li>\n<li>Menu Plus: Improve sticky menu experience</li>\n<li>Menu Plus: Float sticky menu logo right when navigation is set to float left</li>\n<li>Secondary Navigation: Adjust z-index</li>\n</ul>\n<p><strong>(7/10/2016) - 1.2.87</strong></p>\n<ul>\n<li>Increase database sanitization/escaping and harden security throughout all add-ons</li>\n<li>Backgrounds: Place options into sections inside Background Images panel</li>\n<li>Blog: Add new filter to set the column count: generate_blog_get_column_count</li>\n<li>Blog: Add title tag to read more link</li>\n<li>Secondary Navigation: Fix spacing issue with dropdown menu arrow</li>\n<li>Secondary Navigation: Remove Secondary Navigation panel</li>\n<li>Secondary Navigation: Move sections into their applicable panels</li>\n<li>Secondary Navigation: Add RTL language support</li>\n<li>Spacing: Place options into sections inside Spacing panel</li>\n<li>Spacing: Add RTL support</li>\n<li>Copyright: Move copyright textarea into the Customizer</li>\n<li>Copyright: Swedish translation added - thanks Jamal!</li>\n<li>Page Header: Fix logo setting to work with new WordPress 4.5 custom_logo feature</li>\n<li>Page Header: Vastly improved merged header option</li>\n<li>Page Header: Move Blog Page Header panel into the Blog panel</li>\n<li>Sections: Fix bug where first paragraph wasn\'t being correct wrapped in &lt;p&gt; tag</li>\n<li>Menu Plus: Move options into Layout panel</li>\n</ul>\n<p><strong>(5/29/2016) - 1.2.86</strong></p>\n<ul>\n<li>Blog: Allow resizer to upscale images</li>\n<li>Page Header: Allow resizer to upscale images</li>\n<li>Sections: Fix issue with images enlarging in Sections</li>\n</ul>\n<p><strong>(5/24/2016) - 1.2.85</strong></p>\n<ul>\n<li>Blog: Fix cropping when Photon is being used</li>\n<li>Page Header: Fix cropping when Photon is being used</li>\n</ul>\n<p><strong>(5/23/2016) - 1.2.84</strong></p>\n<ul>\n<li>Blog: Fix bug where two columns appear briefly at 768px width</li>\n<li>Blog: Change image resizer to more lightweight option</li>\n<li>Blog: Fix uneven spacing at the bottom of blog posts in columns</li>\n<li>Sections: Apply the_content filter once to the whole sections page to avoid multiple sharing icons being added by plugins etc..</li>\n<li>Page Header: Change image resizer to more lightweight option</li>\n<li>Page Header: Add apply image sizes button to the Blog Page Header crop options</li>\n<li>Translations: Czech translations updated - thanks Ondrej!</li>\n<li>Translations: Polish translations updated - thanks Krzysztof!</li>\n</ul>\n<p><strong>(5/5/2016) - 1.2.83</strong></p>\n<ul>\n<li>Blog: Fix bug where full width post wasn\'t displaying in columns</li>\n<li>Blog: Add a check for the blog content customizer control in the theme to prevent warning</li>\n<li>Blog: Add button to apply post image sizes in the Customizer to prevent unnecessary images being created</li>\n</ul>\n<p><strong>(5/3/2016) - 1.2.82</strong></p>\n<ul>\n<li>Blog: Improve masonry width logic</li>\n<li>Blog: Improve proportional image resizing</li>\n<li>Blog: Switch to a better image resizer</li>\n<li>Spacing: Add spacing for dropdown menu toggle and mobile items in the navigation</li>\n<li>Colors: Fix text-domain for \"Colors\" panel to allow it to be translated</li>\n<li>Colors: Add focus style to buttons</li>\n<li>Sections: Replace the_content filter with Sections specific filter to avoid plugins adding icons and other content into each section</li>\n<li>Page Header: Add background image as the video placeholder if it can\'t be loaded (mobile devices etc..)</li>\n<li>Page Header: Switch to a better image resizer</li>\n<li>Typography: Adjust label size in Typography sections in Customizer for longer translations</li>\n<li>Polish translations added - thanks, Paul!</li>\n</ul>\n<p><strong>(3/24/2016) - 1.2.81</strong></p>\n<ul>\n<li>Page Header: Fix javascript bug in Safari</li>\n</ul>\n<p><strong>(3/23/2016) - 1.2.80</strong></p>\n<ul>\n<li>Page Header: Fix iOS bug with parallax background image</li>\n<li>Page Header: Move \"Appearance &gt; Blog Page Header\" to \"Customize &gt; Page Header &gt; Blog\"</li>\n<li>Page Header: Adjust proportional resizing</li>\n<li>Page Header: Add generate_page_header_featured_image filter to force usage of the featured image over the custom field</li>\n<li>Page Header: Add option to merge site header and page header with a transparent navigation</li>\n<li>Page Header: Add option to include a video background in your page header</li>\n<li>Page Header: Add option to replace your logo/header on individual pages/posts</li>\n<li>Page Header: Improve metabox saving to prevent empty values in the database</li>\n<li>Page Header: Minify parallax JS</li>\n<li>Typography: Add input fields to font sizes to manually adjust them without slider</li>\n<li>Typography: Adjust separators in Customizer</li>\n<li>Typography: Add mobile font sizes for the main title, H1 and H2</li>\n<li>Menu Plus: Adjust navigation width with container width in Customizer</li>\n<li>Menu Plus: Fix sticky navigation spacer width</li>\n<li>Menu Plus: Navigation float right aligns sticky menu items to the right</li>\n<li>Menu Plus: Add new dropdown arrows to slideout menu</li>\n<li>Menu Plus: New Feature: Mobile Header</li>\n<li>Menu Plus: Separate options into panels</li>\n<li>Menu Plus: Close slideout menu with escape key</li>\n<li>Secondary Nav: Fix separator spacing below secondary navigation in the widget area</li>\n<li>Secondary Nav: Add support for navigation click dropdown</li>\n<li>Secondary Nav: Minify CSS and JS</li>\n<li>Blog: Fix category/author page header when columns are set</li>\n<li>Blog: Remove generate_blog_activate_masonry function and bundle it in with generate_blog_get_masonry function</li>\n<li>Blog: Turn off masonry if we\'re on WooCommerce search results</li>\n<li>Blog: Turn off columns if we\'re on WooCommerce search results</li>\n<li>Blog: Minify CSS and JS</li>\n<li>Colors: Add focus styles to navigation</li>\n<li>Backgrounds: Add separators in Customizer</li>\n<li>Backgrounds: Fix doubling up background images in the content when One Container is set</li>\n<li>Spacing: Add separators in Customizer</li>\n<li>Sections: Improve editor handling when visual editor is turned off</li>\n<li>Sections: Use excerpt metabox on archives/blog if Sections is in use in single post</li>\n<li>Sections: Fix bug where archives/blog loses layout if most recent post is using Sections</li>\n<li>Sections: Minify CSS and JS</li>\n<li>Disable Elements: Improve metabox saving to prevent empty values in the database</li>\n<li>Italian translations added for all add-ons - thank you Roberto!</li>\n<li>German translations updated for all add-ons - thank you Daniel!</li>\n</ul>\n<p><strong>(12/22/2015) - 1.2.79</strong></p>\n<ul>\n<li>Spacing: Add function_exists in case GP theme isn\'t activated</li>\n</ul>\n<p><strong>(12/21/2015) - 1.2.78</strong></p>\n<ul>\n<li>Backgrounds: Fix bug where navigation background image was showing in sub-navigation as well</li>\n<li>Backgrounds: Optimize CSS</li>\n<li>Colors: Optimize CSS</li>\n<li>Secondary Nav: Remove unnecessary CSS from &lt;head&gt;</li>\n<li>Spacing: Optimize CSS</li>\n<li>Typography: Optimize CSS</li>\n<li>Menu Plus: Fix slideout menu glitch when menu item has # as URL</li>\n<li>Menu Plus: Improve sticky functionality and display</li>\n<li>Menu Plus: Update sticky menu width when navigation is container and layout is updated</li>\n<li>Menu Plus: Improve slideout menu transition</li>\n<li>Blog: Add filter to add post types for the masonry width metabox: generate_blog_masonry_metabox</li>\n<li>Blog: Add option to set posts as equal height columns</li>\n<li>Blog: Update masonry when layout is changed in Customizer</li>\n<li>Blog: Add safeguard in case people type Auto in post image sizes</li>\n<li>Sections: Add support for password protected pages and Sections</li>\n<li>Spacing: Remove widget padding if one container is set</li>\n<li>Spacing: Right and left content padding now affects content area when One Container is set</li>\n<li>Page Header: Fix proportional resizing</li>\n<li>Updater functionality improved</li>\n</ul>\n<p><strong>(11/29/2015) - 1.2.77</strong></p>\n<ul>\n<li>Blog: Fix warning when post image width is set without a height</li>\n</ul>\n<p><strong>(11/27/2015) - 1.2.76</strong></p>\n<ul>\n<li>Menu Plus: Don\'t display sticky menu logo if sticky menu is disabled</li>\n</ul>\n<p><strong>(11/27/2015) - 1.2.75</strong></p>\n<ul>\n<li>Czech translations added to all add-ons - thanks Ondrej!</li>\n<li>Slovak translation added to GP Premium - thanks Jan!</li>\n<li>Move from email activation to license key activation</li>\n<li>Menu Plus: Add ability to add menu item with slider-exit class to exit the slideout menu</li>\n<li>Menu Plus: Add generate_after_slideout_navigation hook</li>\n<li>Menu Plus: Adjust mobile search item selector to include ability for more items to be added</li>\n<li>Menu Plus: Fix slideout menu on Windows phones</li>\n<li>Menu Plus: Reduce amount of CSS shown in the &lt;head&gt; section</li>\n<li>Blog: Use array for image resizer instead of string</li>\n<li>Blog: Show date and author on single post even if content title is hidden</li>\n<li>Hooks: Move before header hook content above navigation when set to above header</li>\n<li>Colors: Adjust mobile search item selector to include ability for more items to be added</li>\n<li>Colors: Reduce amount of CSS shown in the &lt;head&gt; section</li>\n<li>Spacing: Adjust mobile search item selector to include ability for more items to be added</li>\n<li>Spacing: Reduce amount of CSS shown in the &lt;head&gt; section</li>\n<li>Sections: Allow sidebars to display on with Sections if generate_sections_sidebars filter is set to true</li>\n<li>Sections: Make adjustment to ensure compatibility with PHP7</li>\n<li>Disable Elements: Disabling the site navigation also disbale the sticky navigation if Menu Plus is activated</li>\n<li>Typography: Reduce amount of CSS shown in the &lt;head&gt; section</li>\n<li>Backgrounds: Reduce amount of CSS shown in the &lt;head&gt; section</li>\n<li>Page Header: Reduce CSS shown in &lt;head&gt; section if there\'s no page header content</li>\n<li>Secondary Nav: Reduce amount of CSS shown in the &lt;head&gt; section</li>\n</ul>\n<p><strong>(10/30/2015) - 1.2.74</strong></p>\n<ul>\n<li>Menu Plus: Fix mobile menu overlap with search icon when sticky effect set to \"none\"</li>\n</ul>\n<p><strong>(10/29/2015) - 1.2.73</strong></p>\n<ul>\n<li>Blog: Allow post image cropping to have proportional width based on height</li>\n<li>Blog: Hiding the date, author, categories, tags and comments link fully removes them (requires GP 1.3.18)</li>\n<li>Typography: Add font size controller for footer/copyright</li>\n<li>Page Header: Fix full screen issue when refreshing half way down the screen</li>\n<li>Colors: Fix missing placeholder text in Edge browser</li>\n<li>Colors: Adjust mobile search item selector</li>\n<li>Menu Plus: Change \"hamburger\" icon to close icon on slideout menu open</li>\n<li>Menu Plus: Fix bug where mobile only sticky menu was appear on desktop when set to fade</li>\n<li>Menu Plus: Fix background image issue when slideout menu is enabled</li>\n<li>Menu Plus: Add classes to &lt;body&gt; element for site logo in navigation/sticky navigation</li>\n<li>Menu Plus: Add styling for mobile search item</li>\n<li>Menu Plus: Replace slideout menu script with a more lightweight, efficient one</li>\n<li>Disable Elements: Disabling the headline/title fully removes it from the code (requires GP 1.3.18)</li>\n<li>Spacing: Add styling for mobile search item</li>\n</ul>\n<p>----</p>\n<p><strong>(10/3/2015) - 1.2.72</strong></p>\n<ul>\n<li>Blog: Fix masonry on tablet orientation change</li>\n<li>Blog: Fix masonry on search results page</li>\n<li>Menu Plus: Fix sticky menu bug when navigation is in sidebar</li>\n<li>Menu Plus: Remove empty javascript element if slideout menu is disabled</li>\n<li>Menu Plus: Fix sticky menu bug when mobile menu is toggled</li>\n<li>Menu Plus: Delay sticky script from initializing until all other scripts are done</li>\n<li>Page Header: Add microdata to page header image</li>\n<li>Spacing: Fix mobile search spacing</li>\n<li>Sections: Add generate_sections_default_padding_top and generate_sections_default_padding_bottom filters for the default padding</li>\n</ul>\n<p>----</p>\n<p><strong>(9/16/2015) - 1.2.71</strong></p>\n<ul>\n<li>Menu Plus: Fix empty alert</li>\n</ul>\n<p>----</p>\n<p><strong>(9/14/2015) - 1.2.70</strong></p>\n<ul>\n<li>Menu Plus: German translation added (thank you, Daniel!)</li>\n<li>Disable Elements: Disable post image on single template if set</li>\n<li>Spacing: Adjust spacing for mobile search</li>\n<li>Typography: Range slider settings adjusted</li>\n<li>Sections: Fix Add Media button when in Text editor</li>\n<li>Menu Plus: Fix conflict with navigation search in mobile menu</li>\n<li>Page Header: Fix mobile bug on Chrome with full height page headers</li>\n<li>Menu Plus: Fix Secondary Navigation dropdown issue when slideout menu is enabled</li>\n</ul>\n<p>----</p>\n<p><strong>(8/24/2015) - 1.2.69</strong></p>\n<ul>\n<li>[!] Menu Plus: Sticky Menu Slide was showing up behind content</li>\n<li>[*] Menu Plus: Remove notices if GP isn\'t activated</li>\n<li>[*] Page Header: Remove notice if GP isn\'t activated</li>\n</ul>\n<p>----</p>\n<p><strong>(8/22/2015) - 1.2.68</strong></p>\n<ul>\n<li>[!] Blog: Remove masonry load more button if linked directly to last page</li>\n<li>[!] Sections: Fix issue with sections displaying on IE8</li>\n<li>[*] Sections: Add new filter to allow sections on any post type you like: generate_sections_post_types</li>\n<li>[+] Page Header: Add new filter to allow page header link to open in new tab: generate_page_header_target</li>\n<li>[!] Menu Plus: Fix error when using Jetpack\'s Mobile Theme</li>\n<li>[*] Menu Plus: Improve fade transition</li>\n<li>[!] Colors: Fix mobile menu text hover</li>\n<li>[+] GP Premium: Activate/Deactivate multiple add-ons at once</li>\n</ul>\n<p>----</p>\n<p><strong>(8/6/2015) - 1.2.67</strong></p>\n<ul>\n<li>[*] Disable Elements: Disable post image now works without Page Header being activated</li>\n<li>[!] Menu+: Fix bug where hidden navigation clone was conflicting with secondary navigation</li>\n<li>[*] Secondary Nav: Mobile menu toggle changed from &lt;h3&gt; to &lt;button&gt;<br />\n+ If you\'ve used h3.menu-toggle in any custom CSS, you\'ll need to adjust it (.menu-toggle is fine)</li>\n</ul>\n<p>----</p>\n<p><strong>(8/2/2015) - 1.2.66</strong></p>\n<ul>\n<li>[*] Menu+: Smoothen slideout transitions</li>\n<li>[+] Menu+: Add \"generate_menu_slideout_effect\" filter</li>\n<li>[+] Menu+: Add \"generate_menu_slideout_position\" filter</li>\n<li>[!] Menu+: Fix alignment issue with float right contained sticky menu</li>\n<li>[*] Menu+: Show sticky menu on mobile only, desktop only or both</li>\n<li>[*] Menu+: Various tweaks</li>\n<li>[+] Blog: Add jump to anchor when using read more tag</li>\n</ul>\n<p>----</p>\n<p><strong>(8/1/2015) - 1.2.65</strong></p>\n<ul>\n<li>[+] Menu Plus: Added to GP Premium</li>\n<li>[*] Blog: Run image resizer on front-end only</li>\n<li>[*] Page Header: Run image resizier on front-end only</li>\n<li>[*] Page Header: Run cmb2 only if it hasn\'t already been initialized</li>\n<li>[*] Blog: Remove float on floated post images on mobile</li>\n<li>[*] All: Email/add-on activation improved</li>\n</ul>\n<p>----</p>\n<p><strong>(7/13/2015) - 1.2.64</strong></p>\n<ul>\n<li>[*] Blog: If the read more input is empty, don\'t include markup in post</li>\n<li>[*] Blog: fix masonry horizontal scroll on mobile (no sidebars)</li>\n<li>[*] Blog: Fix post image (float left or right) margin on mobile</li>\n<li>[*] Secondary Nav: Adjust mobile breakpoint</li>\n<li>[!] Secondary Nav: Fix secondary navigation font bug</li>\n<li>[!] Typography: Fix weird Google Font rendering bug</li>\n<li>[!] Sections: Fix bug where paragraphs were being stripped</li>\n<li>[!] Sections: Fix shortcode bug</li>\n</ul>\n<p>----</p>\n<p><strong>(6/28/2015) - 1.2.63</strong></p>\n<ul>\n<li>[+] Typography + Spacing: Italian translations added (thanks, Roberto!!)</li>\n<li>[+] Allow shortcodes in text widgets</li>\n<li>[!] Typography: Fix bug where variants weren\'t registering</li>\n</ul>\n<p>----</p>\n<p><strong>(6/25/2015) - 1.2.62</strong></p>\n<ul>\n<li>[+] All add-ons - French translations updated (thanks, Philippe!!)</li>\n<li>[+] All add-ons - Russian translations added (thanks, Alexey!!)</li>\n<li>[*] Page Header: Improve fullscreen height and vertical center functionality</li>\n<li>[*] Secondary Nav: Wrap mobile menu in span</li>\n<li>[*] Sections: Fix some weird CSS styling in editor</li>\n<li>[*] Secondary Nav: Updated mobile breakpoint to 767px</li>\n<li>[+] Sections: Add generate_sections_parallax_speed filter to change the speed of parallax effect</li>\n<li>[+] Blog: Add new filter: generate_blog_activate_masonry - this checks whether we should activate masonry or not</li>\n<li>[+] Blog: Add code to allow Google Analtyics to track masonry load more as pageviews</li>\n<li>[+] Typography: Major update! Values changed to allow future Google Font additions/changes - please backup before updating.</li>\n</ul>\n<p>----</p>\n<p><strong>(5/20/2015) - 1.2.61</strong></p>\n<ul>\n<li>[!] Sections: Fix spacing bug while using one container</li>\n<li>[!] Typography: Fix subset issue</li>\n<li>[*] Translation files updated</li>\n<li>[+] Blog: Add class to read more paragraph container</li>\n<li>[!] Secondary Nav: Fix background image upload controls</li>\n<li>[*] Blog: Fix broken translation strings</li>\n<li>[+] Sections: Add ability to use Sections on posts</li>\n</ul>\n<p>----</p>\n<p><strong>(5/16/2015) - 1.2.6</strong></p>\n<ul>\n<li>[*] Page Header: Performance improvements</li>\n<li>[*] Page Header: GP_IMAGE_RESIZER constant added to give option to disable automatic thumbnail regeneration</li>\n<li>[x] Page Header: Crop position removed for now</li>\n<li>[*] French translations updated (thanks, Philippe!!)</li>\n<li>[!] Copyright: Fix bug where copyright was being removed when email was saved</li>\n</ul>\n<p>----</p>\n<p><strong>(5/13/2015) - 1.2.5</strong></p>\n<p>[!] Hooks: Fix bug where Inside Content Container wasn\'t showing up</p>\n<p>----</p>\n<p><strong>(5/6/2015) - 1.2.4</strong></p>\n<ul>\n<li>[!] Page Header: Add function_exists() functions to admin-options.php to stop error when standalone and GP Premium are activated.</li>\n<li>[!] Sections: Fix bug where sidebar padding wasn\'t working with one container set</li>\n<li>[*] Sections: Improve editor when visual editor disabled</li>\n<li>[!] Page Header: Fix bug in parallax.js</li>\n<li>[*] German language updated through all add-ons (thanks, Daniel!!)</li>\n<li>[*] Blog: Disallow masonry on any post types but the core \"post\" type</li>\n<li>[!] Sections: Remove background color on sections pages when one container is set.</li>\n<li>[!] Page Header: Remove empty space on attachment page</li>\n<li>[*] Import/Export: Delete GP Hooks specific import - no longer needed</li>\n<li>[+] Hooks: Add option to disable individual hooks</li>\n<li>[+] Hooks: Move options to one table - reduces queries</li>\n<li>[+] Typography: Widget content size option added</li>\n<li>[!] Sections: Fix bug dealing with sidebar layouts</li>\n<li>[*] Email activation performance increased</li>\n</ul>\n<p>----</p>\n<p><strong>(4/14/2015) - 1.2.3</strong></p>\n<ul>\n<li>[!] Sections: Fix language path</li>\n<li>[*] All add-ons: Update language files</li>\n<li>[!] Sections: Remove wp_enqueue_media() call which was breaking featured image</li>\n</ul>\n<p>----</p>\n<p><strong>(4/12/2015) - 1.2.2</strong></p>\n<ul>\n<li>[!] Spacing: Fix bug where sidebar padding wasn\'t working with one container set</li>\n<li>[!] Sections: Fix error relating to old version of PHP</li>\n</ul>\n<p>----</p>\n<p><strong>(4/11/2015) - 1.2.1</strong></p>\n<ul>\n<li>[!] Sections: Fix bug where HTML was being stripped</li>\n</ul>\n<p>----</p>\n<p><strong>(4/9/2015) - 1.2</strong></p>\n<ul>\n<li>[+] German translations added (thank you Daniel!!)</li>\n<li>[*] Page Header &amp; Blog: remove bfi_thumb and use WordPress resizer (reduced memory usage)</li>\n<li>[*] Typography: Group typography options into areas</li>\n<li>[+] Typography: Comic Sans MS added to font list</li>\n<li>[*] Colors: French translation updated</li>\n<li>[*] Spacing: French translation updated</li>\n<li>[*] Blog: French translation updated</li>\n<li>[*] Copyright: French translation updated</li>\n<li>[+] Copyright: Save button added below textarea</li>\n<li>[+] Typography: French translation added</li>\n<li>[*] Secondary Nav: Mobile breakpoint removed from mobile.css and added to enqueue function</li>\n<li>[+] Sections: Introducing Generate Sections</li>\n<li>[!] Page Header: Fix bug where add paragraphs doesn\'t work on Blog Header</li>\n<li>[+] Import/Export: Ability to import/export GP Hooks added</li>\n<li>[+] Hooks: Ability to import/export GP Hooks added</li>\n<li>[*] Page Header: Disable parallax on mobile</li>\n<li>[!] Blog: Show next/prev links even when everything else is hidden</li>\n<li>[*] Blog: Masonry improved</li>\n</ul>\n<p>----</p>\n<p><strong>(1/28/2015) - 1.1</strong></p>\n<ul>\n<li>[+] Spacing: French translation added</li>\n<li>[+] Copyright: French translation added</li>\n<li>[+] Blog: French translation added</li>\n<li>[*] Blog: Choosing medium as the masonry block width gives items 50% width.</li>\n<li>[*] Blog: Masonry re-written to perform better</li>\n<li>[+] Page Header: New options page added (Appearance &gt; Blog Page Header) - add a page header to your blog</li>\n<li>[+] Page Header: Better parallax effect added to page header background</li>\n<li>[!] Page Header: Resizing image turned it to PNG and increased file size</li>\n<li>[+] Page Header: Added option to enable full screen background image</li>\n<li>[+] Page Header: Added option to vertically center content</li>\n<li>[+] Colors: Color options added for H1, H2 and H3 elements</li>\n<li>[+] Typography: Font fallback set - use generate_fallback_font filter to change it</li>\n</ul>\n<p>----</p>\n<p><strong>(12/15/2014) - 1.0</strong></p>\n<ul>\n<li>[*] Blog: Adjustments made to alignment CSS to work with W3 Total Cache</li>\n<li>[+] Typography: More fonts added</li>\n<li>[+] Typography: Filter added to subset</li>\n<li>[+] Colors: French translation added</li>\n</ul>\n<p>----</p>\n<p><strong>(11/17/2014) - 0.9</strong></p>\n<ul>\n<li>[!] Blog: Applied post image position to images using Page Header addon</li>\n</ul>\n<p>----</p>\n<p><strong>(11/17/2014) - 0.8</strong></p>\n<ul>\n<li>[*] Blog: Hiding post images works again</li>\n</ul>\n<p>----</p>\n<p><strong>(11/16/2014) - 0.7</strong></p>\n<ul>\n<li>[+] Page Header: Option to add background color</li>\n<li>[*] Page Header: Background image no longer required for other options</li>\n<li>[*] Page Header: Image resizer now uses BFI Thumb</li>\n<li>[+] Page Header: Option to move post header below the title</li>\n<li>[*] Secondary Nav: Mobile breakpoint increased to include tablets</li>\n<li>[!] Secondary Nav: Fix bug causing Trebuchet MS not to work</li>\n<li>[!] Colors: Navigation current text color wasn\'t working while navigation floating right</li>\n<li>[*] Colors: Change color of placeholder text to text color</li>\n<li>[!] Secondary Nav: Remove secondary navigation element if no menu is set</li>\n<li>[+] Blog: Add option to hide categories</li>\n<li>[+] Blog: Choose alignment of post image</li>\n<li>[+] Blog: Choose size of post image</li>\n<li>[+] Hooks: Added inside main content container hook</li>\n</ul>\n<p>----</p>\n<p><strong>(10/27/2014) - 0.6</strong></p>\n<ul>\n<li>[!] Typography: Fix bug with non Google fonts calling to Google</li>\n</ul>\n<p>----</p>\n<p><strong>(10/20/2014) - 0.5</strong></p>\n<ul>\n<li>[!] Disable Elements: Fix bug applying latest post setting to blog</li>\n<li>[*] Backgrounds: Upload buttons now use Media Library</li>\n<li>[!] Blog: Fix masonry spacing issues</li>\n<li>[*] Page Header: Code cleanup</li>\n</ul>\n<p>----</p>\n<p><strong>(10/11/2014) - 0.4</strong></p>\n<ul>\n<li>[+] Copyright: Allow shortcodes in Copyright</li>\n<li>[*] Copyright: Changed copyright field to textarea</li>\n<li>[!] Blog: Fix mobile bug in masonry blog on iPhone</li>\n<li>[*] Spacing: Change separator spacing from padding to margin</li>\n<li>[*] Translation files updated</li>\n</ul>\n<p>----</p>\n<p><strong>(10/2/2014) - 0.3</strong></p>\n<ul>\n<li>[!] Blog: Not able to hide author on single posts</li>\n<li>[!] Backgrounds: Background images double in content if One Container is set</li>\n<li>[+] GP Hooks: Add After Footer Widgets to GP Hooks</li>\n<li>[+] Secondary Nav: Option to change \"Menu\" label on mobile secondary navigation</li>\n<li>[!] Page Header: buddypress fix</li>\n</ul>\n<p>----</p>\n<p><strong>(9/17/2014) - 0.2</strong></p>\n<ul>\n<li>[*] Make Google Fonts call more robust</li>\n<li>[!] Fix secondary navigation link color when floating right</li>\n<li>[+] Background image options added to secondary navigation</li>\n<li>[+] File structures cleaned up</li>\n<li>[+] Masonry width and most recent post masonry width options added</li>\n</ul>\n<p>----</p>\n<p><strong>(9/7/2014) - 0.1</strong></p>\n<ul>\n<li>Initial Release</li>\n</ul>\n\";}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:13:{s:35:\"backupwordpress/backupwordpress.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:29:\"w.org/plugins/backupwordpress\";s:4:\"slug\";s:15:\"backupwordpress\";s:6:\"plugin\";s:35:\"backupwordpress/backupwordpress.php\";s:11:\"new_version\";s:4:\"3.10\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/backupwordpress/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/backupwordpress.3.10.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/backupwordpress/assets/icon-256x256.jpg?rev=1105225\";s:2:\"1x\";s:68:\"https://ps.w.org/backupwordpress/assets/icon-128x128.png?rev=1105225\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/backupwordpress/assets/banner-1544x500.jpg?rev=904756\";s:2:\"1x\";s:69:\"https://ps.w.org/backupwordpress/assets/banner-772x250.jpg?rev=904756\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/classic-editor.1.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"download-manager/download-manager.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/download-manager\";s:4:\"slug\";s:16:\"download-manager\";s:6:\"plugin\";s:37:\"download-manager/download-manager.php\";s:11:\"new_version\";s:5:\"3.0.3\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/download-manager/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/download-manager.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/download-manager/assets/icon-256x256.png?rev=1561688\";s:2:\"1x\";s:69:\"https://ps.w.org/download-manager/assets/icon-128x128.png?rev=1561688\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/download-manager/assets/banner-772x250.png?rev=1722853\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"file-manager-advanced/file_manager_advanced.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/file-manager-advanced\";s:4:\"slug\";s:21:\"file-manager-advanced\";s:6:\"plugin\";s:47:\"file-manager-advanced/file_manager_advanced.php\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/file-manager-advanced/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/file-manager-advanced.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/file-manager-advanced/assets/icon-128x128.png?rev=1947474\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:76:\"https://ps.w.org/file-manager-advanced/assets/banner-772x250.png?rev=1787731\";}s:11:\"banners_rtl\";a:0:{}}s:35:\"insert-headers-and-footers/ihaf.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:40:\"w.org/plugins/insert-headers-and-footers\";s:4:\"slug\";s:26:\"insert-headers-and-footers\";s:6:\"plugin\";s:35:\"insert-headers-and-footers/ihaf.php\";s:11:\"new_version\";s:5:\"1.4.4\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/insert-headers-and-footers/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-256x256.png?rev=1610266\";s:2:\"1x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-128x128.png?rev=1610266\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/insert-headers-and-footers/assets/banner-772x250.png?rev=1610266\";}s:11:\"banners_rtl\";a:0:{}}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:3:\"7.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/jetpack.7.8.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=1791404\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=1791404\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"pdf-embedder/pdf_embedder.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/pdf-embedder\";s:4:\"slug\";s:12:\"pdf-embedder\";s:6:\"plugin\";s:29:\"pdf-embedder/pdf_embedder.php\";s:11:\"new_version\";s:3:\"4.4\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/pdf-embedder/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/pdf-embedder.4.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/pdf-embedder/assets/icon-256x256.png?rev=1072588\";s:2:\"1x\";s:65:\"https://ps.w.org/pdf-embedder/assets/icon-128x128.png?rev=1072588\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/pdf-embedder/assets/banner-1544x500.png?rev=1629344\";s:2:\"1x\";s:67:\"https://ps.w.org/pdf-embedder/assets/banner-772x250.png?rev=1629344\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"use-any-font/use-any-font.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/use-any-font\";s:4:\"slug\";s:12:\"use-any-font\";s:6:\"plugin\";s:29:\"use-any-font/use-any-font.php\";s:11:\"new_version\";s:3:\"5.3\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/use-any-font/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/use-any-font.5.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/use-any-font/assets/icon-128x128.png?rev=1018539\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/use-any-font/assets/banner-1544x500.jpg?rev=1625029\";s:2:\"1x\";s:67:\"https://ps.w.org/use-any-font/assets/banner-772x250.png?rev=1626279\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"3.7.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.7.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2075035\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2075035\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2075035\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2075035\";}s:11:\"banners_rtl\";a:0:{}}s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:57:\"w.org/plugins/woocommerce-gateway-paypal-express-checkout\";s:4:\"slug\";s:43:\"woocommerce-gateway-paypal-express-checkout\";s:6:\"plugin\";s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";s:11:\"new_version\";s:6:\"1.6.17\";s:3:\"url\";s:74:\"https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/\";s:7:\"package\";s:93:\"https://downloads.wordpress.org/plugin/woocommerce-gateway-paypal-express-checkout.1.6.17.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:96:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/icon-256x256.png?rev=1900204\";s:2:\"1x\";s:96:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/icon-128x128.png?rev=1900204\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:99:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/banner-1544x500.png?rev=1948167\";s:2:\"1x\";s:98:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/banner-772x250.png?rev=1948167\";}s:11:\"banners_rtl\";a:0:{}}s:45:\"woocommerce-services/woocommerce-services.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/woocommerce-services\";s:4:\"slug\";s:20:\"woocommerce-services\";s:6:\"plugin\";s:45:\"woocommerce-services/woocommerce-services.php\";s:11:\"new_version\";s:6:\"1.21.1\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/woocommerce-services/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/woocommerce-services.1.21.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/woocommerce-services/assets/icon-256x256.png?rev=1910075\";s:2:\"1x\";s:73:\"https://ps.w.org/woocommerce-services/assets/icon-128x128.png?rev=1910075\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/woocommerce-services/assets/banner-1544x500.png?rev=1962920\";s:2:\"1x\";s:75:\"https://ps.w.org/woocommerce-services/assets/banner-772x250.png?rev=1962920\";}s:11:\"banners_rtl\";a:0:{}}s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:40:\"w.org/plugins/woocommerce-gateway-stripe\";s:4:\"slug\";s:26:\"woocommerce-gateway-stripe\";s:6:\"plugin\";s:57:\"woocommerce-gateway-stripe/woocommerce-gateway-stripe.php\";s:11:\"new_version\";s:5:\"4.3.0\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/woocommerce-gateway-stripe/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/woocommerce-gateway-stripe.4.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/woocommerce-gateway-stripe/assets/icon-256x256.png?rev=1917495\";s:2:\"1x\";s:79:\"https://ps.w.org/woocommerce-gateway-stripe/assets/icon-128x128.png?rev=1917495\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/woocommerce-gateway-stripe/assets/banner-1544x500.png?rev=1917495\";s:2:\"1x\";s:81:\"https://ps.w.org/woocommerce-gateway-stripe/assets/banner-772x250.png?rev=1917495\";}s:11:\"banners_rtl\";a:0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"12.4\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.12.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=1834347\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1946641\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1946641\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1843435\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1843435\";}}}s:7:\"checked\";a:2:{s:9:\"bb-plugin\";s:7:\"2.2.3.3\";s:25:\"gp-premium/gp-premium.php\";s:5:\"1.7.7\";}}','no'),(201052,'_transient_timeout_jetpack_jitm_9272cef1b4237919ca7648a39bf4e94','1572913754','no'),(201053,'_transient_jetpack_jitm_9272cef1b4237919ca7648a39bf4e94','a:2:{i:0;O:8:\"stdClass\":9:{s:7:\"content\";O:8:\"stdClass\":5:{s:7:\"message\";s:56:\"Looking to add features and functionality to your store?\";s:4:\"icon\";s:11:\"woocommerce\";s:4:\"list\";a:0:{}s:11:\"description\";s:48:\"Browse 300+ official extensions for WooCommerce.\";s:7:\"classes\";s:0:\"\";}s:3:\"CTA\";O:8:\"stdClass\":4:{s:7:\"message\";s:17:\"Browse Extensions\";s:4:\"hook\";s:0:\"\";s:9:\"newWindow\";b:1;s:7:\"primary\";b:1;}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:23:\"wccom_plugin_extensions\";s:13:\"feature_class\";s:23:\"wccom_plugin_extensions\";s:7:\"expires\";i:3628800;s:13:\"max_dismissal\";i:2;s:15:\"activate_module\";N;}s:18:\"last_response_time\";i:1572913454;}','no'),(201054,'_transient_timeout_jpp_li_f4be3023176b86040b8396e7d7d0a909','1572916729','no'),(201055,'_transient_jpp_li_f4be3023176b86040b8396e7d7d0a909','a:5:{s:6:\"status\";s:12:\"blocked-hard\";s:3:\"msg\";s:45:\"This IP is currently blocked (45.252.248.138)\";s:17:\"seconds_remaining\";i:3503;s:16:\"blocked_attempts\";s:5:\"13372\";s:6:\"expire\";i:1572916729;}','no'),(201069,'_transient_timeout_jetpack_jitm_3c3c1485ae44f9c2fc4cf64f93ef704','1572913571','no'),(201070,'_transient_jetpack_jitm_3c3c1485ae44f9c2fc4cf64f93ef704','a:2:{i:0;O:8:\"stdClass\":9:{s:7:\"content\";O:8:\"stdClass\":5:{s:7:\"message\";s:37:\"Ready to print a USPS shipping label?\";s:4:\"icon\";s:11:\"woocommerce\";s:4:\"list\";a:0:{}s:11:\"description\";s:113:\"WooCommerce Shipping is ready to use on your next order! Get discounted rates and print shipping labels yourself.\";s:7:\"classes\";s:0:\"\";}s:3:\"CTA\";O:8:\"stdClass\":4:{s:7:\"message\";s:36:\"Show me how to print shipping labels\";s:4:\"hook\";s:0:\"\";s:9:\"newWindow\";b:1;s:7:\"primary\";b:1;}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:25:\"wooservices-existing-user\";s:13:\"feature_class\";s:25:\"wooservices-existing-user\";s:7:\"expires\";i:3628800;s:13:\"max_dismissal\";i:2;s:15:\"activate_module\";N;}s:18:\"last_response_time\";i:1572913271;}','no'),(201074,'_transient_timeout_jetpack_jitm_5fb2eb6b806b22581942e420bf3f2c6','1572913616','no'),(201075,'_transient_jetpack_jitm_5fb2eb6b806b22581942e420bf3f2c6','a:5:{i:0;O:8:\"stdClass\":9:{s:7:\"content\";O:8:\"stdClass\":5:{s:7:\"message\";s:37:\"Ready to print a USPS shipping label?\";s:4:\"icon\";s:11:\"woocommerce\";s:4:\"list\";a:0:{}s:11:\"description\";s:113:\"WooCommerce Shipping is ready to use on your next order! Get discounted rates and print shipping labels yourself.\";s:7:\"classes\";s:0:\"\";}s:3:\"CTA\";O:8:\"stdClass\":4:{s:7:\"message\";s:36:\"Show me how to print shipping labels\";s:4:\"hook\";s:0:\"\";s:9:\"newWindow\";b:1;s:7:\"primary\";b:1;}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:25:\"wooservices-existing-user\";s:13:\"feature_class\";s:25:\"wooservices-existing-user\";s:7:\"expires\";i:3628800;s:13:\"max_dismissal\";i:2;s:15:\"activate_module\";N;}i:1;O:8:\"stdClass\":9:{s:7:\"content\";O:8:\"stdClass\":5:{s:7:\"message\";s:64:\"Recommended marketing tools, customization options, and services\";s:4:\"icon\";s:11:\"woocommerce\";s:4:\"list\";a:0:{}s:11:\"description\";s:136:\"Optimize your store for sales &mdash; including discount and coupon options, email and social integrations, and more powerful reporting.\";s:7:\"classes\";s:0:\"\";}s:3:\"CTA\";O:8:\"stdClass\":4:{s:7:\"message\";s:27:\"Recommended Marketing Tools\";s:4:\"hook\";s:0:\"\";s:9:\"newWindow\";b:1;s:7:\"primary\";b:1;}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:19:\"wccom_cat_marketing\";s:13:\"feature_class\";s:19:\"wccom_cat_marketing\";s:7:\"expires\";i:3628800;s:13:\"max_dismissal\";i:2;s:15:\"activate_module\";N;}i:2;O:8:\"stdClass\":9:{s:7:\"content\";O:8:\"stdClass\":5:{s:7:\"message\";s:70:\"You can now print USPS International Labels with WooCommerce Shipping.\";s:4:\"icon\";s:11:\"woocommerce\";s:4:\"list\";a:0:{}s:11:\"description\";s:61:\"Expand your business and ship to the more than 190 countries.\";s:7:\"classes\";s:0:\"\";}s:3:\"CTA\";O:8:\"stdClass\":4:{s:7:\"message\";s:10:\"Learn more\";s:4:\"hook\";s:0:\"\";s:9:\"newWindow\";b:1;s:7:\"primary\";b:1;}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:18:\"wccom_shipping_wcs\";s:13:\"feature_class\";s:18:\"wccom_shipping_wcs\";s:7:\"expires\";i:3628800;s:13:\"max_dismissal\";i:2;s:15:\"activate_module\";N;}i:3;O:8:\"stdClass\":9:{s:7:\"content\";O:8:\"stdClass\":5:{s:7:\"message\";s:41:\"Try the new WooCommerce Mobile App (free)\";s:4:\"icon\";s:11:\"woocommerce\";s:4:\"list\";a:0:{}s:11:\"description\";s:155:\"Put WooCommerce in your pocket to manage orders, receive sales notifications, and view key metrics – wherever you are. Available now for iOS and Android.\";s:7:\"classes\";s:0:\"\";}s:3:\"CTA\";O:8:\"stdClass\":4:{s:7:\"message\";s:10:\"Try it now\";s:4:\"hook\";s:0:\"\";s:9:\"newWindow\";b:1;s:7:\"primary\";b:1;}s:8:\"template\";s:7:\"default\";s:3:\"ttl\";i:300;s:2:\"id\";s:12:\"wccom_mobile\";s:13:\"feature_class\";s:5:\"wccom\";s:7:\"expires\";i:3628800;s:13:\"max_dismissal\";i:2;s:15:\"activate_module\";N;}s:18:\"last_response_time\";i:1572913316;}','no');
/*!40000 ALTER TABLE `wprl_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_postmeta`
--

DROP TABLE IF EXISTS `wprl_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3878 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_postmeta`
--

LOCK TABLES `wprl_postmeta` WRITE;
/*!40000 ALTER TABLE `wprl_postmeta` DISABLE KEYS */;
INSERT INTO `wprl_postmeta` VALUES (1,2,'_wp_page_template','default'),(342,82,'_edit_lock','1524740231:1'),(343,82,'_edit_last','1'),(344,82,'_generate-sidebar-layout-meta','no-sidebar'),(345,82,'_generate-full-width-content','true'),(346,91,'_fl_builder_data','a:24:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"a442a16cba\";s:6:\"delete\";s:10:\"f4bd051928\";s:4:\"edit\";s:10:\"e58b99d58c\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00e9ed\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"56\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:56;s:5:\"title\";s:22:\"secure-paypal-payments\";s:8:\"filename\";s:26:\"secure-paypal-payments.png\";s:3:\"url\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:4:\"link\";s:58:\"http://remoterangler.com/home/secure-paypal-payments/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:22:\"secure-paypal-payments\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725059000;s:8:\"modified\";i:1524725059000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"6c70fdd708\";s:6:\"delete\";s:10:\"dec711c771\";s:4:\"edit\";s:10:\"5fe521d700\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=56&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:12504;s:21:\"filesizeHumanReadable\";s:5:\"12 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:150;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:300;s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments-300x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:6:\"height\";i:150;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(308,89,'_thumbnail_id','53'),(339,89,'_wpas_done_all','1'),(310,89,'_sku',''),(311,89,'_regular_price','16.99'),(312,89,'_sale_price',''),(313,89,'_sale_price_dates_from',''),(314,89,'_sale_price_dates_to',''),(315,89,'total_sales','8'),(316,89,'_tax_status','taxable'),(317,89,'_tax_class',''),(318,89,'_manage_stock','no'),(319,89,'_backorders','no'),(320,89,'_sold_individually','no'),(321,89,'_weight',''),(322,89,'_length',''),(323,89,'_width',''),(324,89,'_height',''),(325,89,'_upsell_ids','a:0:{}'),(326,89,'_crosssell_ids','a:0:{}'),(327,89,'_purchase_note',''),(328,89,'_default_attributes','a:0:{}'),(329,89,'_virtual','no'),(330,89,'_downloadable','no'),(331,89,'_product_image_gallery','178,182'),(332,89,'_download_limit','-1'),(333,89,'_download_expiry','-1'),(334,89,'_stock',NULL),(335,89,'_stock_status','instock'),(336,89,'_product_version','3.6.4'),(337,89,'_price','16.99'),(338,89,'_generate-sidebar-layout-meta','no-sidebar'),(340,89,'_generate-disable-header','true'),(307,89,'_edit_lock','1525081989:1'),(306,89,'_edit_last','1'),(304,89,'_wc_rating_count','a:1:{i:5;i:1;}'),(305,89,'_wc_average_rating','5.00'),(303,89,'_wc_review_count','1'),(1157,225,'_wp_attachment_metadata','a:19:{s:5:\"codec\";s:23:\"Windows Media Audio 9.2\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:44100;s:7:\"bitrate\";i:96647;s:15:\"bits_per_sample\";i:16;s:10:\"dataformat\";s:3:\"wma\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:7:\"encoder\";s:23:\"Windows Media Audio 9.2\";s:15:\"encoder_options\";s:34:\"96 kbps, 44 kHz, stereo 1-pass CBR\";s:11:\"channelmode\";s:6:\"stereo\";s:17:\"compression_ratio\";d:0.06848568594104308127068492240141495130956172943115234375;s:10:\"fileformat\";s:3:\"asf\";s:8:\"filesize\";i:2892201;s:9:\"mime_type\";s:14:\"audio/x-ms-wma\";s:6:\"length\";i:239;s:16:\"length_formatted\";s:4:\"3:59\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(58,2,'_fl_builder_draft','a:30:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":28:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:167:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/G-aqHkBC2-o?autoplay=1\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";s:10:\"poster_src\";s:0:\"\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"178\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:178;s:5:\"title\";s:15:\"20180430_015733\";s:8:\"filename\";s:19:\"20180430_015733.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:4:\"link\";s:57:\"http://remoterangler.com/howitworks/20180430_015733/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180430_015733\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:2;s:4:\"date\";i:1525081487000;s:8:\"modified\";i:1525081487000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 30, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"23cff0ccfe\";s:6:\"delete\";s:10:\"439f04e8f4\";s:4:\"edit\";s:10:\"46b1e8787d\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=178&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:61:\"http://remoterangler.com/wp-admin/post.php?post=2&action=edit\";s:15:\"uploadedToTitle\";s:12:\"How It Works\";s:15:\"filesizeInBytes\";i:2092955;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:168;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-168x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:572;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2d17082ffe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29e0ea9cb8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9cb8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29e0ea9e18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9e18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29e0ea9cb8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29e0ea9bf4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9bf4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae29e5a020ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e5a020ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0075a0\";s:14:\"bg_hover_color\";s:6:\"00e0b3\";s:10:\"text_color\";s:6:\"050001\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2d17082ffe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2d17082ffe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}}'),(60,2,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(61,24,'_wp_attached_file','2018/02/espresso-2.jpg'),(62,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2018/02/espresso-2.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"espresso-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"espresso-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"espresso-2-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"espresso-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"espresso-2-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"espresso-2-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"espresso-2-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:22:\"espresso-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,24,'_starter_content_theme','twentyseventeen'),(65,25,'_wp_attached_file','2018/02/sandwich-2.jpg'),(66,25,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2018/02/sandwich-2.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"sandwich-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"sandwich-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"sandwich-2-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"sandwich-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"sandwich-2-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"sandwich-2-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"sandwich-2-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:22:\"sandwich-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(67,25,'_starter_content_theme','twentyseventeen'),(69,26,'_wp_attached_file','2018/02/coffee-2.jpg'),(70,26,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2018/02/coffee-2.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"coffee-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"coffee-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"coffee-2-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"coffee-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"coffee-2-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"coffee-2-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"coffee-2-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"coffee-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(71,26,'_starter_content_theme','twentyseventeen'),(74,27,'_customize_changeset_uuid','858a5fa4-f08d-44a7-8016-6ee8309fd8c4'),(229,67,'_fl_builder_data','a:15:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"20\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"col_size\";s:2:\"45\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"photo_src\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:20;s:5:\"title\";s:24:\"iStock_000020420411Small\";s:8:\"filename\";s:28:\"iStock_000020420411Small.jpg\";s:3:\"url\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:4:\"link\";s:51:\"https://demos.wpbeaverbuilder.com/?attachment_id=20\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:74:\"A group of successful and satisfied businesspeople looking upwards smiling\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:24:\"istock_000020420411small\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1388106995000;s:8:\"modified\";d:1388106995000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:72:\"https://demos.wpbeaverbuilder.com/wp-includes/images/crystal/default.png\";s:13:\"dateFormatted\";s:17:\"December 27, 2013\";s:6:\"nonces\";O:8:\"stdClass\":2:{s:6:\"update\";s:10:\"c81542dcbb\";s:6:\"delete\";s:10:\"afa6f774bc\";}s:8:\"editLink\";s:71:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=20&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:199;s:5:\"width\";i:300;s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small-300x199.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:6:\"height\";i:565;s:5:\"width\";i:849;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:565;s:5:\"width\";i:849;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:243:\"<p>Partim orba seductaque. Porrexerat mutatas ita campos caelum viseret locoque rudis. Homini tollere aer caeli acervo. Occiduo onus origo zonae iapeto inminet nulli elementaque. Deducite usu montibus igni tegit dixere campoque quem nulli.</p>\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:234:\"<p>Mutastis semine! Forma tonitrua praecipites. Liberioris nix rapidisque matutinis unus undae os. Turba ambitae nitidis ultima. Ille declivia orbe primaque phoebe opifex tegi pressa crescendo. Vultus onus ponderibus aere ambitae.</p>\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}}'),(77,28,'_customize_changeset_uuid','858a5fa4-f08d-44a7-8016-6ee8309fd8c4'),(524,113,'_fl_builder_data','a:22:{s:13:\"5ae1a96ae70c2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae70c2\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7143\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae70fb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae70fb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae70c2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1a96ae7132\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7132\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae70fb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:7:\"address\";s:36:\"1 Infinite Loop, Cupertino, CA 95014\";s:6:\"height\";s:3:\"400\";s:10:\"margin_top\";s:2:\"40\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:3:\"map\";}}s:13:\"5ae1a96ae7143\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7143\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7179\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae71af\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71af\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7179\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae71e5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71e5\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:30;}}s:13:\"5ae1a96ae721b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae721b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"size\";s:2:\"70\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7251\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7251\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:15:\"CONTACT DETAILS\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae7287\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7287\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":13:{s:4:\"text\";s:441:\"<span style=\"color: #999999;\">Don’t hestiate to ask us something. Email us directly <span style=\"color: #808080;\"><strong>hi@loremipsum.com</strong></span> or call us at <span style=\"color: #808080;\"><strong>1-800-275-0002</strong></span>. Sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat. Donec a scelerisque turpis. Eu pro expetenda contentiones. Dolor maiestatis mea ut, oportere corrumpit eu duo.</span>\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae1a96ae72be\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae72be\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:12:\"mailto_email\";s:0:\"\";s:11:\"name_toggle\";s:4:\"show\";s:14:\"subject_toggle\";s:4:\"hide\";s:12:\"email_toggle\";s:4:\"show\";s:12:\"phone_toggle\";s:4:\"show\";s:14:\"success_action\";s:4:\"none\";s:15:\"success_message\";s:50:\"Thanks for your message! We’ll be in touch soon.\";s:11:\"success_url\";s:0:\"\";s:8:\"btn_text\";s:12:\"Send Message\";s:8:\"btn_icon\";s:11:\"fa fa-check\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:6:\"999999\";s:18:\"btn_bg_hover_color\";s:6:\"333333\";s:14:\"btn_text_color\";s:6:\"ffffff\";s:20:\"btn_text_hover_color\";s:6:\"FFFFFF\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:3:\"100\";s:21:\"btn_button_transition\";s:6:\"enable\";s:9:\"btn_width\";s:4:\"auto\";s:9:\"btn_align\";s:4:\"left\";s:13:\"btn_font_size\";s:2:\"15\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"3\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"50\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:12:\"contact-form\";s:18:\"success_url-search\";s:0:\"\";}}s:13:\"5ae1a96ae72f4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae72f4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":13:{s:4:\"text\";s:224:\"<span style=\"color: #999999;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Culpa repellendus adipisci laborum placeat delectus labore cupiditate deserunt minus numquam consequatur esse, hic at earum illo.</span>\";s:10:\"margin_top\";s:1:\"5\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae1a96ae732a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae732a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:23:\"AVAILABLE AT 9AM TO 6PM\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"afafaf\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:7:\"regular\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"13\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:6:\"custom\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae7360\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7360\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:5;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:2:\"25\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae7396\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7396\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:12:\"800-275-0002\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"00c2e5\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"32\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae73cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae73cc\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:6;s:8:\"settings\";O:8:\"stdClass\":21:{s:5:\"icons\";a:4:{i:0;O:8:\"stdClass\":9:{s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:1:\"0\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":8:{s:4:\"icon\";s:20:\"fa fa-twitter-square\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:2;O:8:\"stdClass\":8:{s:4:\"icon\";s:24:\"fa fa-google-plus-square\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:3;O:8:\"stdClass\":8:{s:4:\"icon\";s:21:\"fa fa-linkedin-square\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";s:2:\"60\";s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:4:\"left\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae1a96ae7402\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7402\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:6:\"f7f7f7\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7438\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7438\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7402\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae746e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae746e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae7438\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1a96ae74a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae74a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae746e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:10:\"Contact Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"777777\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae74da\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae74da\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":13:{s:4:\"text\";s:209:\"<strong><span style=\"color: #00c2e5;\">8181 Winchester Blvd.</span></strong>\n\n<strong><span style=\"color: #00c2e5;\">Cupertino, CA 95014,</span></strong>\n\n<strong><span style=\"color: #00c2e5;\">US</span></strong>\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae1a96ae7511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:20:\"LET’S GET IN TOUCH\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(80,29,'_customize_changeset_uuid','858a5fa4-f08d-44a7-8016-6ee8309fd8c4'),(81,30,'_thumbnail_id','26'),(83,30,'_customize_changeset_uuid','858a5fa4-f08d-44a7-8016-6ee8309fd8c4'),(59,2,'_edit_lock','1526345049:1'),(513,111,'_fl_builder_data','a:15:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:8:\"About Us\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:266:\"That\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of work from Honda. Just a couple of regular guys with high hopes and Big DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1469:\"It all started with the fact that I have way too many Remotes to keep track of. I kid you not, I have 8 remotes in my bedroom. It seems that the more technology that we get the more remotes we have to operate them. Let me list what my remotes go to: TV, Soundbar, Firestick, light switch, Airconditioner, an aroma diffuser and 2 fan remotes, one for me and one for my GF because she doesn\'t like it too cold. I use these remotes everyday and looking for each one became such a headache. They were either in the sheets, under the pillows, under the bed or under me sucked in by my gravitational pull as my gf puts it. I had to do something about all these remotes, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard, they\'re always nearby and plus always together. I know I can\'t be the only one with this problem, people have been losing their remotes since they were invented. I couldn\'t live without it, I wasn\'t constantly looking for the remotes, getting up and shaking the sheets to find them, they were always there and always together. That\'s when I knew other people need this product. So I created the Remote Rangler and my coworker friend Troy was one of my first customers. He loved it so much that he offered to help me launch it, and we became partners. Now we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}}'),(510,110,'_menu_item_url',''),(509,110,'_menu_item_xfn',''),(508,110,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(507,110,'_menu_item_target',''),(506,110,'_menu_item_object','page'),(505,110,'_menu_item_object_id','83'),(504,110,'_menu_item_menu_item_parent','0'),(503,110,'_menu_item_type','post_type'),(502,110,'_publicize_pending','1'),(501,109,'_menu_item_url',''),(500,109,'_menu_item_xfn',''),(487,108,'_menu_item_object_id','29'),(486,108,'_menu_item_menu_item_parent','0'),(485,108,'_menu_item_type','post_type'),(484,108,'_publicize_pending','1'),(483,107,'_menu_item_url',''),(481,107,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(480,107,'_menu_item_target',''),(479,107,'_menu_item_object','page'),(478,107,'_menu_item_object_id','2'),(477,107,'_menu_item_menu_item_parent','0'),(475,107,'_publicize_pending','1'),(474,106,'_menu_item_url',''),(473,106,'_menu_item_xfn',''),(472,106,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(471,106,'_menu_item_target',''),(470,106,'_menu_item_object','page'),(469,106,'_menu_item_object_id','28'),(468,106,'_menu_item_menu_item_parent','0'),(467,106,'_menu_item_type','post_type'),(466,106,'_publicize_pending','1'),(464,105,'_menu_item_xfn',''),(465,105,'_menu_item_url','http://remoterangler.com'),(463,105,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(462,105,'_menu_item_target',''),(461,105,'_menu_item_object','custom'),(460,105,'_menu_item_object_id','105'),(459,105,'_menu_item_menu_item_parent','0'),(1155,224,'_wp_attachment_metadata','a:19:{s:5:\"codec\";s:23:\"Windows Media Audio 9.2\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:44100;s:7:\"bitrate\";i:96647;s:15:\"bits_per_sample\";i:16;s:10:\"dataformat\";s:3:\"wma\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:7:\"encoder\";s:23:\"Windows Media Audio 9.2\";s:15:\"encoder_options\";s:34:\"96 kbps, 44 kHz, stereo 1-pass CBR\";s:11:\"channelmode\";s:6:\"stereo\";s:17:\"compression_ratio\";d:0.06848568594104308127068492240141495130956172943115234375;s:10:\"fileformat\";s:3:\"asf\";s:8:\"filesize\";i:2914651;s:9:\"mime_type\";s:14:\"audio/x-ms-wma\";s:6:\"length\";i:240;s:16:\"length_formatted\";s:4:\"4:00\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(168,27,'_fl_builder_draft','a:54:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":66:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/27-2/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524819663000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"24932895fe\";s:6:\"delete\";s:10:\"d9f3499f58\";s:4:\"edit\";s:10:\"825d6b18f6\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";s:24:\"flrich1525166498007_text\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":115:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:3:\"189\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/05/20180430_231400-768x1024.jpg\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:6:\"00b795\";s:10:\"text_color\";s:6:\"ffffff\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae2f4ceb18cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb18cc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2f4ceb1a5c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2f4ceb1905\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1905\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f4ceb18cc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:100;}}s:13:\"5ae2f4ceb194e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb194e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";i:20;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f4ceb1984\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1984\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":9:{s:4:\"icon\";s:25:\"ua-icon ua-icon-instagram\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae2f4ceb1a5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1a5c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f0f65c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0f65c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:6;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f17b81\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f17b81\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa143f18388\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f18388\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa143f17b81\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa143f0efc5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0efc5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa143f18388\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14610bd7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bd7a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5afa14610bdb3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bdb3\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610bde9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bde9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610be1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be1f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bd7a\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14610be55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be55\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5afa14610be8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:7:\"heading\";s:12:\"How It Works\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5afa14610bec1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bec1\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bef6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bef6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bf2c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf2c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bec1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610bf63\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf63\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bef6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14610bf98\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf98\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610bfce\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bfce\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610c004\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c004\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bf98\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:185:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the Remote Rangler like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1545873758020_text\";s:0:\"\";}}s:13:\"5afa14610c03a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c03a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bfce\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610c070\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c070\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:5;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:6:\"layout\";s:5:\"1-col\";}}s:13:\"5afa148bd3b5a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd3b5a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa148bdd99a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bdd99a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa148bd3b5a\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa148bde51c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bde51c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa148bdd99a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa148bd320e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd320e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa148bde51c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14b6e6179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e6179\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14b6e74b0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e74b0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14b6e6179\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14b6e5511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e5511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14b6e74b0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:6:\"layout\";s:12:\"product_page\";s:10:\"product_id\";s:0:\"\";s:13:\"parent_cat_id\";s:1:\"0\";s:11:\"cat_columns\";s:1:\"4\";s:15:\"products_source\";s:3:\"ids\";s:11:\"product_ids\";s:0:\"\";s:13:\"category_slug\";s:0:\"\";s:12:\"num_products\";s:2:\"12\";s:7:\"columns\";s:1:\"4\";s:7:\"orderby\";s:10:\"menu_order\";s:5:\"order\";s:3:\"ASC\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:11:\"woocommerce\";}}}'),(170,27,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(169,27,'_edit_lock','1545874439:1'),(173,27,'_fl_builder_data','a:54:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":66:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/27-2/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524819663000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"24932895fe\";s:6:\"delete\";s:10:\"d9f3499f58\";s:4:\"edit\";s:10:\"825d6b18f6\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";s:24:\"flrich1525166498007_text\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":115:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:3:\"189\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/05/20180430_231400-768x1024.jpg\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:6:\"00b795\";s:10:\"text_color\";s:6:\"ffffff\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae2f4ceb18cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb18cc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2f4ceb1a5c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2f4ceb1905\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1905\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f4ceb18cc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:100;}}s:13:\"5ae2f4ceb194e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb194e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";i:20;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f4ceb1984\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1984\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":9:{s:4:\"icon\";s:25:\"ua-icon ua-icon-instagram\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae2f4ceb1a5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1a5c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f0f65c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0f65c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:6;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f17b81\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f17b81\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa143f18388\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f18388\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa143f17b81\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa143f0efc5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0efc5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa143f18388\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14610bd7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bd7a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5afa14610bdb3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bdb3\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610bde9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bde9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610be1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be1f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bd7a\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14610be55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be55\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5afa14610be8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:7:\"heading\";s:12:\"How It Works\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5afa14610bec1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bec1\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bef6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bef6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bf2c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf2c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bec1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610bf63\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf63\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bef6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14610bf98\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf98\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610bfce\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bfce\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610c004\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c004\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bf98\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:185:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the Remote Rangler like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1545873758020_text\";s:0:\"\";}}s:13:\"5afa14610c03a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c03a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bfce\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610c070\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c070\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:5;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:6:\"layout\";s:5:\"1-col\";}}s:13:\"5afa148bd3b5a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd3b5a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa148bdd99a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bdd99a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa148bd3b5a\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa148bde51c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bde51c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa148bdd99a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa148bd320e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd320e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa148bde51c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14b6e6179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e6179\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14b6e74b0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e74b0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14b6e6179\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14b6e5511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e5511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14b6e74b0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:6:\"layout\";s:12:\"product_page\";s:10:\"product_id\";s:0:\"\";s:13:\"parent_cat_id\";s:1:\"0\";s:11:\"cat_columns\";s:1:\"4\";s:15:\"products_source\";s:3:\"ids\";s:11:\"product_ids\";s:0:\"\";s:13:\"category_slug\";s:0:\"\";s:12:\"num_products\";s:2:\"12\";s:7:\"columns\";s:1:\"4\";s:7:\"orderby\";s:10:\"menu_order\";s:5:\"order\";s:3:\"ASC\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:11:\"woocommerce\";}}}'),(2224,278,'_fl_builder_data','a:54:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":66:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/27-2/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524819663000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"24932895fe\";s:6:\"delete\";s:10:\"d9f3499f58\";s:4:\"edit\";s:10:\"825d6b18f6\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";s:24:\"flrich1525166498007_text\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":115:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:3:\"189\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/05/20180430_231400-768x1024.jpg\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:6:\"00b795\";s:10:\"text_color\";s:6:\"ffffff\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae2f4ceb18cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb18cc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2f4ceb1a5c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2f4ceb1905\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1905\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f4ceb18cc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:100;}}s:13:\"5ae2f4ceb194e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb194e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";i:20;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f4ceb1984\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1984\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":9:{s:4:\"icon\";s:25:\"ua-icon ua-icon-instagram\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae2f4ceb1a5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1a5c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f0f65c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0f65c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:6;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f17b81\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f17b81\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa143f18388\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f18388\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa143f17b81\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa143f0efc5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0efc5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa143f18388\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14610bd7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bd7a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5afa14610bdb3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bdb3\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610bde9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bde9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610be1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be1f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bd7a\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14610be55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be55\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5afa14610be8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:7:\"heading\";s:12:\"How It Works\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5afa14610bec1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bec1\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bef6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bef6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bf2c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf2c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bec1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610bf63\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf63\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bef6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14610bf98\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf98\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610bfce\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bfce\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610c004\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c004\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bf98\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14610c03a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c03a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bfce\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610c070\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c070\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:5;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:6:\"layout\";s:5:\"1-col\";}}s:13:\"5afa148bd3b5a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd3b5a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa148bdd99a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bdd99a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa148bd3b5a\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa148bde51c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bde51c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa148bdd99a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa148bd320e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd320e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa148bde51c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14b6e6179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e6179\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14b6e74b0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e74b0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14b6e6179\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14b6e5511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e5511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14b6e74b0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:6:\"layout\";s:12:\"product_page\";s:10:\"product_id\";s:0:\"\";s:13:\"parent_cat_id\";s:1:\"0\";s:11:\"cat_columns\";s:1:\"4\";s:15:\"products_source\";s:3:\"ids\";s:11:\"product_ids\";s:0:\"\";s:13:\"category_slug\";s:0:\"\";s:12:\"num_products\";s:2:\"12\";s:7:\"columns\";s:1:\"4\";s:7:\"orderby\";s:10:\"menu_order\";s:5:\"order\";s:3:\"ASC\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:11:\"woocommerce\";}}}'),(174,27,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(175,27,'_fl_builder_enabled','1'),(176,49,'_fl_builder_data','a:21:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":42:{s:5:\"title\";s:12:\"Our Services\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"769\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:769;s:5:\"title\";s:8:\"services\";s:8:\"filename\";s:12:\"services.jpg\";s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=769\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:10:\"services-3\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406183831000;s:8:\"modified\";d:1406183831000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4b6f65c73c\";s:6:\"delete\";s:10:\"7e578ad677\";s:4:\"edit\";s:10:\"fd8b618f6b\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=769&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":43:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"771\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:771;s:5:\"title\";s:5:\"about\";s:8:\"filename\";s:9:\"about.jpg\";s:3:\"url\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=771\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:7:\"about-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406184434000;s:8:\"modified\";d:1406184434000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"c87d7399d8\";s:6:\"delete\";s:10:\"ad5a21c442\";s:4:\"edit\";s:10:\"83a3580325\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=771&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f387\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f387\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"title\";s:42:\"Ready to find out more? Get started today!\";s:4:\"text\";s:68:\"<p>Terrae recepta fratrum passim fabricator videre nam deducite.</p>\";s:6:\"layout\";s:6:\"inline\";s:9:\"alignment\";s:6:\"center\";s:7:\"spacing\";s:1:\"0\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"btn_text\";s:10:\"Contact Us\";s:8:\"btn_link\";s:1:\"#\";s:15:\"btn_link_target\";s:5:\"_self\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:13:\"btn_font_size\";s:2:\"18\";s:11:\"btn_padding\";s:2:\"14\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:3:\"cta\";}}s:13:\"5adface21f3bd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f3bd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":13:{s:5:\"color\";s:6:\"000000\";s:7:\"opacity\";s:2:\"10\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:2:\"40\";s:13:\"margin_bottom\";s:2:\"30\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5adface21f3f3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f3f3\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f5c2\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:7:\"heading\";s:26:\"Let\'s Get Down To Business\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"50\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":43:{s:5:\"title\";s:12:\"Get In Touch\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"772\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:772;s:5:\"title\";s:7:\"contact\";s:8:\"filename\";s:11:\"contact.jpg\";s:3:\"url\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=772\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"contact-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406184450000;s:8:\"modified\";d:1406184450000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"7776fc3ffe\";s:6:\"delete\";s:10:\"415b869291\";s:4:\"edit\";s:10:\"eab78e6a39\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=772&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:88:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:6:\"ffffff\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:3:\"783\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:14:\"padding_bottom\";s:3:\"180\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:12:\"bg_image_src\";s:77:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/biz3.jpg\";}}s:13:\"5adface21f5c2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5c2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f5f8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f5f8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5f8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f62f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f62f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:30:\"We\'re Here To Help You Succeed\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"30\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";s:8:\"col_size\";i:100;}}s:13:\"5adface21f665\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f665\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f5c2\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":10:{s:4:\"text\";s:159:\"<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Building your WordPress website has never been easier with themes from FastLine Media!</span></p>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:2:\"15\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5adface21f69b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f69b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f5c2\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":24:{s:4:\"text\";s:17:\"Get Started Today\";s:4:\"icon\";s:0:\"\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"18\";s:7:\"padding\";s:2:\"14\";s:13:\"border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:6:\"button\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}}'),(177,49,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(178,27,'_edit_last','1'),(179,50,'_fl_builder_data','a:21:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":42:{s:5:\"title\";s:12:\"Our Services\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"769\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:769;s:5:\"title\";s:8:\"services\";s:8:\"filename\";s:12:\"services.jpg\";s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=769\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:10:\"services-3\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406183831000;s:8:\"modified\";d:1406183831000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4b6f65c73c\";s:6:\"delete\";s:10:\"7e578ad677\";s:4:\"edit\";s:10:\"fd8b618f6b\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=769&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":43:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"771\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:771;s:5:\"title\";s:5:\"about\";s:8:\"filename\";s:9:\"about.jpg\";s:3:\"url\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=771\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:7:\"about-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406184434000;s:8:\"modified\";d:1406184434000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"c87d7399d8\";s:6:\"delete\";s:10:\"ad5a21c442\";s:4:\"edit\";s:10:\"83a3580325\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=771&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f387\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f387\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"title\";s:42:\"Ready to find out more? Get started today!\";s:4:\"text\";s:68:\"<p>Terrae recepta fratrum passim fabricator videre nam deducite.</p>\";s:6:\"layout\";s:6:\"inline\";s:9:\"alignment\";s:6:\"center\";s:7:\"spacing\";s:1:\"0\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"btn_text\";s:10:\"Contact Us\";s:8:\"btn_link\";s:1:\"#\";s:15:\"btn_link_target\";s:5:\"_self\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:13:\"btn_font_size\";s:2:\"18\";s:11:\"btn_padding\";s:2:\"14\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:3:\"cta\";}}s:13:\"5adface21f3bd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f3bd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":13:{s:5:\"color\";s:6:\"000000\";s:7:\"opacity\";s:2:\"10\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:2:\"40\";s:13:\"margin_bottom\";s:2:\"30\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5adface21f3f3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f3f3\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f5c2\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:7:\"heading\";s:26:\"Let\'s Get Down To Business\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"50\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":43:{s:5:\"title\";s:12:\"Get In Touch\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"772\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:772;s:5:\"title\";s:7:\"contact\";s:8:\"filename\";s:11:\"contact.jpg\";s:3:\"url\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=772\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"contact-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406184450000;s:8:\"modified\";d:1406184450000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"7776fc3ffe\";s:6:\"delete\";s:10:\"415b869291\";s:4:\"edit\";s:10:\"eab78e6a39\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=772&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:88:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:6:\"ffffff\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:3:\"783\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:14:\"padding_bottom\";s:3:\"180\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:12:\"bg_image_src\";s:77:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/biz3.jpg\";}}s:13:\"5adface21f5c2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5c2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f5f8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f5f8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5f8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f62f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f62f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:30:\"We\'re Here To Help You Succeed\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"30\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";s:8:\"col_size\";i:100;}}s:13:\"5adface21f665\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f665\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f5c2\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":10:{s:4:\"text\";s:159:\"<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Building your WordPress website has never been easier with themes from FastLine Media!</span></p>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:2:\"15\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5adface21f69b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f69b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f5c2\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":24:{s:4:\"text\";s:17:\"Get Started Today\";s:4:\"icon\";s:0:\"\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"18\";s:7:\"padding\";s:2:\"14\";s:13:\"border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:6:\"button\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}}'),(180,50,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(181,51,'_fl_builder_data','a:21:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":42:{s:5:\"title\";s:12:\"Our Services\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"769\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:769;s:5:\"title\";s:8:\"services\";s:8:\"filename\";s:12:\"services.jpg\";s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=769\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:10:\"services-3\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406183831000;s:8:\"modified\";d:1406183831000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4b6f65c73c\";s:6:\"delete\";s:10:\"7e578ad677\";s:4:\"edit\";s:10:\"fd8b618f6b\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=769&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":43:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"771\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:771;s:5:\"title\";s:5:\"about\";s:8:\"filename\";s:9:\"about.jpg\";s:3:\"url\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=771\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:7:\"about-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406184434000;s:8:\"modified\";d:1406184434000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"c87d7399d8\";s:6:\"delete\";s:10:\"ad5a21c442\";s:4:\"edit\";s:10:\"83a3580325\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=771&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f387\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f387\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"title\";s:42:\"Ready to find out more? Get started today!\";s:4:\"text\";s:68:\"<p>Terrae recepta fratrum passim fabricator videre nam deducite.</p>\";s:6:\"layout\";s:6:\"inline\";s:9:\"alignment\";s:6:\"center\";s:7:\"spacing\";s:1:\"0\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"btn_text\";s:10:\"Contact Us\";s:8:\"btn_link\";s:1:\"#\";s:15:\"btn_link_target\";s:5:\"_self\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:13:\"btn_font_size\";s:2:\"18\";s:11:\"btn_padding\";s:2:\"14\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:3:\"cta\";}}s:13:\"5adface21f3bd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f3bd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":13:{s:5:\"color\";s:6:\"000000\";s:7:\"opacity\";s:2:\"10\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:2:\"40\";s:13:\"margin_bottom\";s:2:\"30\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5adface21f3f3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f3f3\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f5c2\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:7:\"heading\";s:26:\"Let\'s Get Down To Business\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"50\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":43:{s:5:\"title\";s:12:\"Get In Touch\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"772\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:772;s:5:\"title\";s:7:\"contact\";s:8:\"filename\";s:11:\"contact.jpg\";s:3:\"url\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=772\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"contact-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406184450000;s:8:\"modified\";d:1406184450000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"7776fc3ffe\";s:6:\"delete\";s:10:\"415b869291\";s:4:\"edit\";s:10:\"eab78e6a39\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=772&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:88:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:6:\"ffffff\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:3:\"783\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:14:\"padding_bottom\";s:3:\"180\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:12:\"bg_image_src\";s:77:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/biz3.jpg\";}}s:13:\"5adface21f5c2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5c2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f5f8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f5f8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5f8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f62f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f62f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:30:\"We\'re Here To Help You Succeed\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"30\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";s:8:\"col_size\";i:100;}}s:13:\"5adface21f665\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f665\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f5c2\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":10:{s:4:\"text\";s:159:\"<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Building your WordPress website has never been easier with themes from FastLine Media!</span></p>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:2:\"15\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5adface21f69b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f69b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f5c2\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":24:{s:4:\"text\";s:17:\"Get Started Today\";s:4:\"icon\";s:0:\"\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"18\";s:7:\"padding\";s:2:\"14\";s:13:\"border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:6:\"button\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}}'),(182,51,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(183,52,'_fl_builder_data','a:21:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":42:{s:5:\"title\";s:12:\"Our Services\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"769\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:769;s:5:\"title\";s:8:\"services\";s:8:\"filename\";s:12:\"services.jpg\";s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=769\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:10:\"services-3\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406183831000;s:8:\"modified\";d:1406183831000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4b6f65c73c\";s:6:\"delete\";s:10:\"7e578ad677\";s:4:\"edit\";s:10:\"fd8b618f6b\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=769&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":43:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"771\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:771;s:5:\"title\";s:5:\"about\";s:8:\"filename\";s:9:\"about.jpg\";s:3:\"url\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=771\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:7:\"about-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406184434000;s:8:\"modified\";d:1406184434000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"c87d7399d8\";s:6:\"delete\";s:10:\"ad5a21c442\";s:4:\"edit\";s:10:\"83a3580325\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=771&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f387\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f387\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"title\";s:42:\"Ready to find out more? Get started today!\";s:4:\"text\";s:68:\"<p>Terrae recepta fratrum passim fabricator videre nam deducite.</p>\";s:6:\"layout\";s:6:\"inline\";s:9:\"alignment\";s:6:\"center\";s:7:\"spacing\";s:1:\"0\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"btn_text\";s:10:\"Contact Us\";s:8:\"btn_link\";s:1:\"#\";s:15:\"btn_link_target\";s:5:\"_self\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:13:\"btn_font_size\";s:2:\"18\";s:11:\"btn_padding\";s:2:\"14\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:3:\"cta\";}}s:13:\"5adface21f3bd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f3bd\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":13:{s:5:\"color\";s:6:\"000000\";s:7:\"opacity\";s:2:\"10\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:2:\"40\";s:13:\"margin_bottom\";s:2:\"30\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5adface21f3f3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f3f3\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f5c2\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:7:\"heading\";s:26:\"Let\'s Get Down To Business\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"50\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":43:{s:5:\"title\";s:12:\"Get In Touch\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"772\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:772;s:5:\"title\";s:7:\"contact\";s:8:\"filename\";s:11:\"contact.jpg\";s:3:\"url\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=772\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"contact-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406184450000;s:8:\"modified\";d:1406184450000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"7776fc3ffe\";s:6:\"delete\";s:10:\"415b869291\";s:4:\"edit\";s:10:\"eab78e6a39\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=772&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:88:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:6:\"ffffff\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:3:\"783\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:14:\"padding_bottom\";s:3:\"180\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:12:\"bg_image_src\";s:77:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/biz3.jpg\";}}s:13:\"5adface21f5c2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5c2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f5f8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f5f8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5f8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f62f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f62f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:30:\"We\'re Here To Help You Succeed\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"30\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";s:8:\"col_size\";i:100;}}s:13:\"5adface21f665\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f665\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f5c2\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":10:{s:4:\"text\";s:159:\"<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">Building your WordPress website has never been easier with themes from FastLine Media!</span></p>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:2:\"15\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5adface21f69b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f69b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f5c2\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":24:{s:4:\"text\";s:17:\"Get Started Today\";s:4:\"icon\";s:0:\"\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"18\";s:7:\"padding\";s:2:\"14\";s:13:\"border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:6:\"button\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}}'),(184,52,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(185,27,'_generate-sidebar-layout-meta','no-sidebar'),(186,53,'_wp_attached_file','2018/04/20180308_200016-e1524609034633.jpg'),(187,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1544;s:4:\"file\";s:42:\"2018/04/20180308_200016-e1524609034633.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"20180308_200016-e1524609034633-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"20180308_200016-e1524609034633-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:42:\"20180308_200016-e1524609034633-600x463.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:463;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180308_200016-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180308_200016-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20180308_200016-768x593.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:593;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180308_200016-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:42:\"20180308_200016-e1524609034633-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(188,53,'_edit_lock','1524608910:1'),(189,53,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2889;s:6:\"height\";i:2231;s:4:\"file\";s:19:\"20180308_200016.jpg\";}}'),(190,53,'uabb-cta-link',''),(191,53,'_edit_last','1'),(194,55,'_wp_attached_file','2018/04/20180308_203557.jpg'),(195,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2146;s:6:\"height\";i:4020;s:4:\"file\";s:27:\"2018/04/20180308_203557.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180308_203557-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180308_203557-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"20180308_203557-600x1124.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180308_203557-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180308_203557-160x300.jpg\";s:5:\"width\";i:160;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20180308_203557-768x1439.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1439;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180308_203557-547x1024.jpg\";s:5:\"width\";i:547;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1520541314\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:16:\"0.00833333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(192,54,'_wp_attached_file','2018/04/20180308_201116-e1524767580992.jpg'),(193,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2500;s:6:\"height\";i:716;s:4:\"file\";s:42:\"2018/04/20180308_201116-e1524767580992.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"20180308_201116-e1524767580992-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"20180308_201116-e1524767580992-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:42:\"20180308_201116-e1524767580992-600x172.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180308_201116-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"20180308_201116-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20180308_201116-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180308_201116-1024x293.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(196,56,'_wp_attached_file','2018/04/secure-paypal-payments.png'),(197,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:150;s:4:\"file\";s:34:\"2018/04/secure-paypal-payments.png\";s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"secure-paypal-payments-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"secure-paypal-payments-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"secure-paypal-payments-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"secure-paypal-payments-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(198,57,'_wp_attached_file','2018/04/20180309_010105.jpg'),(199,57,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1176;s:6:\"height\";i:1904;s:4:\"file\";s:27:\"2018/04/20180309_010105.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180309_010105-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180309_010105-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20180309_010105-600x971.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:971;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180309_010105-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180309_010105-185x300.jpg\";s:5:\"width\";i:185;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20180309_010105-768x1243.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1243;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180309_010105-632x1024.jpg\";s:5:\"width\";i:632;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1520540148\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:16:\"0.00833333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(668,161,'_fl_builder_data','a:25:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}}'),(200,58,'_fl_builder_data','a:24:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"a442a16cba\";s:6:\"delete\";s:10:\"f4bd051928\";s:4:\"edit\";s:10:\"e58b99d58c\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":43:{s:5:\"title\";s:12:\"Get In Touch\";s:4:\"text\";s:128:\"<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"772\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:772;s:5:\"title\";s:7:\"contact\";s:8:\"filename\";s:11:\"contact.jpg\";s:3:\"url\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=772\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:9:\"contact-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:763;s:4:\"date\";d:1406184450000;s:8:\"modified\";d:1406184450000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 24, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"7776fc3ffe\";s:6:\"delete\";s:10:\"415b869291\";s:4:\"edit\";s:10:\"eab78e6a39\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=772&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:88:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:88:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\";s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:400;s:5:\"width\";i:600;s:11:\"orientation\";s:9:\"landscape\";}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00e9ed\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"56\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:56;s:5:\"title\";s:22:\"secure-paypal-payments\";s:8:\"filename\";s:26:\"secure-paypal-payments.png\";s:3:\"url\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:4:\"link\";s:58:\"http://remoterangler.com/home/secure-paypal-payments/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:22:\"secure-paypal-payments\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725059000;s:8:\"modified\";i:1524725059000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"6c70fdd708\";s:6:\"delete\";s:10:\"dec711c771\";s:4:\"edit\";s:10:\"5fe521d700\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=56&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:12504;s:21:\"filesizeHumanReadable\";s:5:\"12 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:150;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:300;s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments-300x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:6:\"height\";i:150;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(201,58,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(202,59,'_wp_attached_file','2018/04/20180309_010536.jpg'),(203,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2140;s:6:\"height\";i:2650;s:4:\"file\";s:27:\"2018/04/20180309_010536.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180309_010536-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180309_010536-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20180309_010536-600x743.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:743;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180309_010536-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180309_010536-242x300.jpg\";s:5:\"width\";i:242;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20180309_010536-768x951.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:951;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180309_010536-827x1024.jpg\";s:5:\"width\";i:827;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1520542092\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:16:\"0.00833333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(205,61,'_wp_attached_file','2018/04/20180405_230244-e1524797515525.jpg'),(206,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3015;s:6:\"height\";i:2964;s:4:\"file\";s:42:\"2018/04/20180405_230244-e1524797515525.jpg\";s:5:\"sizes\";a:3:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"20180405_230244-e1524797515525-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"20180405_230244-e1524797515525-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:42:\"20180405_230244-e1524797515525-600x590.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:590;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(207,62,'_wp_attached_file','2018/04/20180308_202833.jpg'),(208,62,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1416;s:6:\"height\";i:2710;s:4:\"file\";s:27:\"2018/04/20180308_202833.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180308_202833-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180308_202833-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"20180308_202833-600x1148.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180308_202833-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180308_202833-157x300.jpg\";s:5:\"width\";i:157;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20180308_202833-768x1470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180308_202833-535x1024.jpg\";s:5:\"width\";i:535;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1520540855\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213,64,'_wp_attached_file','2018/04/20180405_220150.jpg'),(214,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2452;s:6:\"height\";i:2674;s:4:\"file\";s:27:\"2018/04/20180405_220150.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180405_220150-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180405_220150-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20180405_220150-600x654.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180405_220150-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180405_220150-275x300.jpg\";s:5:\"width\";i:275;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20180405_220150-768x838.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:838;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180405_220150-939x1024.jpg\";s:5:\"width\";i:939;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:27:\"20180405_220150-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1522965671\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:16:\"0.00833333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(215,65,'_fl_builder_data','a:24:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"a442a16cba\";s:6:\"delete\";s:10:\"f4bd051928\";s:4:\"edit\";s:10:\"e58b99d58c\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00e9ed\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"56\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:56;s:5:\"title\";s:22:\"secure-paypal-payments\";s:8:\"filename\";s:26:\"secure-paypal-payments.png\";s:3:\"url\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:4:\"link\";s:58:\"http://remoterangler.com/home/secure-paypal-payments/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:22:\"secure-paypal-payments\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725059000;s:8:\"modified\";i:1524725059000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"6c70fdd708\";s:6:\"delete\";s:10:\"dec711c771\";s:4:\"edit\";s:10:\"5fe521d700\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=56&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:12504;s:21:\"filesizeHumanReadable\";s:5:\"12 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:150;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:300;s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments-300x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:6:\"height\";i:150;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(216,65,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(482,107,'_menu_item_xfn',''),(1169,229,'_wp_attached_file','2018/06/Success-Vibes.zip'),(1160,220,'_fl_builder_draft','a:7:{s:13:\"5b1c3c04bb556\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bb556\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5b1c3c04bc784\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bc784\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c04bcc70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bcc70\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c04bc784\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c04bebd1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bebd1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c04bcc70\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:51:\"[playlist images=\"false\" ids=\"221,222,224,225,223\"]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5b1c3c4ab28fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab28fc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c4ab2c34\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab2c34\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c4ab28fc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c4ab26f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab26f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c4ab2c34\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:10:\"audio_type\";s:13:\"media_library\";s:6:\"audios\";a:5:{i:0;i:221;i:1;i:222;i:2;i:224;i:3;i:225;i:4;i:223;}s:4:\"link\";s:0:\"\";s:8:\"autoplay\";s:1:\"0\";s:4:\"loop\";s:1:\"0\";s:5:\"style\";s:5:\"light\";s:9:\"tracklist\";s:1:\"1\";s:12:\"tracknumbers\";s:1:\"1\";s:6:\"images\";s:1:\"0\";s:7:\"artists\";s:1:\"1\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"audio\";}}}'),(220,28,'_fl_builder_draft','a:18:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:8:\"About Us\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:269:\"That\'s us on the first day we received our initial shipment of Remote Ranglers and started assembling them. I\'m Joe the one on the left and my partner Troy, is on the right. He just got out of work at Honda. Just a couple of regular guys with high hopes and BIG DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1418:\"It all started with the fact that I have way too many remotes to keep track of. I kid you not, I have 8 remotes in just my bedroom! It seems that the more technology we get, the more remotes we have to operate them. Here\'s a list of my many remotes: TV, Soundbar, Firestick, light switch, air-conditioner, aroma diffuser and 2 fan remotes, one for me and one for my girl, because she doesn\'t like it too cold. I use these remotes everyday and keeping track of each one became such a major headache. They were either in the sheets, under the pillows, under the bed or under me, sucked in by my gravitational pull (as my girlfriend puts it.) I had to do something, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard. They are always nearby and ALWAYS together. I know I\'m not the only one with this problem, people have been losing remotes since they were invented. I realized I couldn\'t live without it. That\'s when I knew other people needed this product too. So, out of necessity I created the Remote Rangler! My buddy &amp; coworker Troy was one of my first customers. He loved it so much, that he offered to help me launch it, as his previous job experience related to our business well, and we became partners. Now, we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae81818cfb4f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cfb4f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae81818cfe8a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cfe8a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae81818cfb4f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae81818cf975\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cf975\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae81818cfe8a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:13:\"View Products\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00eacf\";s:14:\"bg_hover_color\";s:6:\"0023d3\";s:10:\"text_color\";s:6:\"0c0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:13:\"border_radius\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}}'),(222,28,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(221,28,'_edit_lock','1525160180:1'),(223,28,'_fl_builder_data','a:18:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:8:\"About Us\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:269:\"That\'s us on the first day we received our initial shipment of Remote Ranglers and started assembling them. I\'m Joe the one on the left and my partner Troy, is on the right. He just got out of work at Honda. Just a couple of regular guys with high hopes and BIG DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1418:\"It all started with the fact that I have way too many remotes to keep track of. I kid you not, I have 8 remotes in just my bedroom! It seems that the more technology we get, the more remotes we have to operate them. Here\'s a list of my many remotes: TV, Soundbar, Firestick, light switch, air-conditioner, aroma diffuser and 2 fan remotes, one for me and one for my girl, because she doesn\'t like it too cold. I use these remotes everyday and keeping track of each one became such a major headache. They were either in the sheets, under the pillows, under the bed or under me, sucked in by my gravitational pull (as my girlfriend puts it.) I had to do something, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard. They are always nearby and ALWAYS together. I know I\'m not the only one with this problem, people have been losing remotes since they were invented. I realized I couldn\'t live without it. That\'s when I knew other people needed this product too. So, out of necessity I created the Remote Rangler! My buddy &amp; coworker Troy was one of my first customers. He loved it so much, that he offered to help me launch it, as his previous job experience related to our business well, and we became partners. Now, we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae81818cfb4f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cfb4f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae81818cfe8a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cfe8a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae81818cfb4f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae81818cf975\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cf975\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae81818cfe8a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:13:\"View Products\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00eacf\";s:14:\"bg_hover_color\";s:6:\"0023d3\";s:10:\"text_color\";s:6:\"0c0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:13:\"border_radius\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}}'),(224,28,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(225,28,'_fl_builder_enabled','1'),(226,66,'_fl_builder_data','a:15:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"20\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"col_size\";s:2:\"45\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"photo_src\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:20;s:5:\"title\";s:24:\"iStock_000020420411Small\";s:8:\"filename\";s:28:\"iStock_000020420411Small.jpg\";s:3:\"url\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:4:\"link\";s:51:\"https://demos.wpbeaverbuilder.com/?attachment_id=20\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:74:\"A group of successful and satisfied businesspeople looking upwards smiling\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:24:\"istock_000020420411small\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1388106995000;s:8:\"modified\";d:1388106995000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:72:\"https://demos.wpbeaverbuilder.com/wp-includes/images/crystal/default.png\";s:13:\"dateFormatted\";s:17:\"December 27, 2013\";s:6:\"nonces\";O:8:\"stdClass\":2:{s:6:\"update\";s:10:\"c81542dcbb\";s:6:\"delete\";s:10:\"afa6f774bc\";}s:8:\"editLink\";s:71:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=20&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:199;s:5:\"width\";i:300;s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small-300x199.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:6:\"height\";i:565;s:5:\"width\";i:849;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:565;s:5:\"width\";i:849;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:243:\"<p>Partim orba seductaque. Porrexerat mutatas ita campos caelum viseret locoque rudis. Homini tollere aer caeli acervo. Occiduo onus origo zonae iapeto inminet nulli elementaque. Deducite usu montibus igni tegit dixere campoque quem nulli.</p>\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:234:\"<p>Mutastis semine! Forma tonitrua praecipites. Liberioris nix rapidisque matutinis unus undae os. Turba ambitae nitidis ultima. Ille declivia orbe primaque phoebe opifex tegi pressa crescendo. Vultus onus ponderibus aere ambitae.</p>\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}}'),(227,66,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(228,28,'_edit_last','1'),(230,67,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(231,28,'_generate-sidebar-layout-meta','no-sidebar'),(232,68,'_fl_builder_data','a:15:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"20\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"col_size\";s:2:\"45\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"photo_src\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:20;s:5:\"title\";s:24:\"iStock_000020420411Small\";s:8:\"filename\";s:28:\"iStock_000020420411Small.jpg\";s:3:\"url\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:4:\"link\";s:51:\"https://demos.wpbeaverbuilder.com/?attachment_id=20\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:74:\"A group of successful and satisfied businesspeople looking upwards smiling\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:24:\"istock_000020420411small\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1388106995000;s:8:\"modified\";d:1388106995000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:72:\"https://demos.wpbeaverbuilder.com/wp-includes/images/crystal/default.png\";s:13:\"dateFormatted\";s:17:\"December 27, 2013\";s:6:\"nonces\";O:8:\"stdClass\":2:{s:6:\"update\";s:10:\"c81542dcbb\";s:6:\"delete\";s:10:\"afa6f774bc\";}s:8:\"editLink\";s:71:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=20&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:199;s:5:\"width\";i:300;s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small-300x199.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:6:\"height\";i:565;s:5:\"width\";i:849;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:565;s:5:\"width\";i:849;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:243:\"<p>Partim orba seductaque. Porrexerat mutatas ita campos caelum viseret locoque rudis. Homini tollere aer caeli acervo. Occiduo onus origo zonae iapeto inminet nulli elementaque. Deducite usu montibus igni tegit dixere campoque quem nulli.</p>\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:234:\"<p>Mutastis semine! Forma tonitrua praecipites. Liberioris nix rapidisque matutinis unus undae os. Turba ambitae nitidis ultima. Ille declivia orbe primaque phoebe opifex tegi pressa crescendo. Vultus onus ponderibus aere ambitae.</p>\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}}'),(233,68,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(234,69,'_wp_attached_file','2018/04/20180426_003915.jpg'),(235,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1432;s:6:\"height\";i:1041;s:4:\"file\";s:27:\"2018/04/20180426_003915.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180426_003915-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180426_003915-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20180426_003915-600x436.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:436;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180426_003915-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180426_003915-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20180426_003915-768x558.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:558;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180426_003915-1024x744.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:744;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(638,153,'_fl_builder_data','a:15:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:8:\"About Us\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:269:\"That\'s us on the first day we received our initial shipment of Remote Ranglers and started assembling them. I\'m Joe the one on the left and my partner Troy, is on the right. He just got out of work at Honda. Just a couple of regular guys with high hopes and BIG DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1417:\"It all started with the fact that I have way too many remotes to keep track of. I kid you not, I have 8 remotes in just my bedroom! It seems that the more technology we get, the more remotes we have to operate them. Here\'s a list of my many remotes: TV, Soundbar, Firestick, light switch, air-conditioner, aroma diffuser and 2 fan remotes, one for me and one for my girl, because she doesn\'t like it too cold. I use these remotes everyday and keeping track of each one became such a major headache. They were either in the sheets, under the pillows, under the bed or under me, sucked in by my gravitational pull (as my girlfriend puts it.) I had to do something, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard. They are always nearby and ALWAYS together. I know I\'m not the only one with this problem, people have been losing remotes since they were invented. I realized I couldn\'t live without it. That\'s when I knew other people needed this product too. So, out of necessity I created the Remote Rangler! My buddy &amp; coworker Troy was one of my first customers. He loved it so much, that he offered to help me launch it,as his previous job experience related to our business well, and we became partners. Now, we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}}'),(236,70,'_fl_builder_data','a:15:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:267:\"That\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of working at Honda. Just a couple of regular guys with high hopes and Big DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1:\"e\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}}'),(237,70,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(238,71,'_fl_builder_data','a:15:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:267:\"That\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of working at Honda. Just a couple of regular guys with high hopes and Big DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1469:\"It all started with the fact that I have way too many Remotes to keep track of. I kid you not, I have 8 remotes in my bedroom. It seems that the more technology that we get the more remotes we have to operate them. Let me list what my remotes go to: TV, Soundbar, Firestick, light switch, Airconditioner, an aroma diffuser and 2 fan remotes, one for me and one for my GF because she doesn\'t like it too cold. I use these remotes everyday and looking for each one became such a headache. They were either in the sheets, under the pillows, under the bed or under me sucked in by my gravitational pull as my gf puts it. I had to do something about all these remotes, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard, they\'re always nearby and plus always together. I know I can\'t be the only one with this problem, people have been losing their remotes since they were invented. I couldn\'t live without it, I wasn\'t constantly looking for the remotes, getting up and shaking the sheets to find them, they were always there and always together. That\'s when I knew other people need this product. So I created the Remote Rangler and my coworker friend Troy was one of my first customers. He loved it so much that he offered to help me launch it, and we became partners. Now we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}}'),(239,71,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(240,72,'_fl_builder_data','a:15:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:266:\"That\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of work from Honda. Just a couple of regular guys with high hopes and Big DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1469:\"It all started with the fact that I have way too many Remotes to keep track of. I kid you not, I have 8 remotes in my bedroom. It seems that the more technology that we get the more remotes we have to operate them. Let me list what my remotes go to: TV, Soundbar, Firestick, light switch, Airconditioner, an aroma diffuser and 2 fan remotes, one for me and one for my GF because she doesn\'t like it too cold. I use these remotes everyday and looking for each one became such a headache. They were either in the sheets, under the pillows, under the bed or under me sucked in by my gravitational pull as my gf puts it. I had to do something about all these remotes, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard, they\'re always nearby and plus always together. I know I can\'t be the only one with this problem, people have been losing their remotes since they were invented. I couldn\'t live without it, I wasn\'t constantly looking for the remotes, getting up and shaking the sheets to find them, they were always there and always together. That\'s when I knew other people need this product. So I created the Remote Rangler and my coworker friend Troy was one of my first customers. He loved it so much that he offered to help me launch it, and we became partners. Now we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}}'),(241,72,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(242,73,'_fl_builder_data','a:24:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"a442a16cba\";s:6:\"delete\";s:10:\"f4bd051928\";s:4:\"edit\";s:10:\"e58b99d58c\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00e9ed\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"56\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:56;s:5:\"title\";s:22:\"secure-paypal-payments\";s:8:\"filename\";s:26:\"secure-paypal-payments.png\";s:3:\"url\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:4:\"link\";s:58:\"http://remoterangler.com/home/secure-paypal-payments/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:22:\"secure-paypal-payments\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725059000;s:8:\"modified\";i:1524725059000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"6c70fdd708\";s:6:\"delete\";s:10:\"dec711c771\";s:4:\"edit\";s:10:\"5fe521d700\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=56&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:12504;s:21:\"filesizeHumanReadable\";s:5:\"12 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:150;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:300;s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments-300x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:6:\"height\";i:150;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(243,73,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(244,74,'_fl_builder_data','a:15:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:266:\"That\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of work from Honda. Just a couple of regular guys with high hopes and Big DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1469:\"It all started with the fact that I have way too many Remotes to keep track of. I kid you not, I have 8 remotes in my bedroom. It seems that the more technology that we get the more remotes we have to operate them. Let me list what my remotes go to: TV, Soundbar, Firestick, light switch, Airconditioner, an aroma diffuser and 2 fan remotes, one for me and one for my GF because she doesn\'t like it too cold. I use these remotes everyday and looking for each one became such a headache. They were either in the sheets, under the pillows, under the bed or under me sucked in by my gravitational pull as my gf puts it. I had to do something about all these remotes, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard, they\'re always nearby and plus always together. I know I can\'t be the only one with this problem, people have been losing their remotes since they were invented. I couldn\'t live without it, I wasn\'t constantly looking for the remotes, getting up and shaking the sheets to find them, they were always there and always together. That\'s when I knew other people need this product. So I created the Remote Rangler and my coworker friend Troy was one of my first customers. He loved it so much that he offered to help me launch it, and we became partners. Now we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}}'),(245,74,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(247,75,'_fl_builder_data','a:15:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:266:\"That\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of work from Honda. Just a couple of regular guys with high hopes and Big DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1469:\"It all started with the fact that I have way too many Remotes to keep track of. I kid you not, I have 8 remotes in my bedroom. It seems that the more technology that we get the more remotes we have to operate them. Let me list what my remotes go to: TV, Soundbar, Firestick, light switch, Airconditioner, an aroma diffuser and 2 fan remotes, one for me and one for my GF because she doesn\'t like it too cold. I use these remotes everyday and looking for each one became such a headache. They were either in the sheets, under the pillows, under the bed or under me sucked in by my gravitational pull as my gf puts it. I had to do something about all these remotes, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard, they\'re always nearby and plus always together. I know I can\'t be the only one with this problem, people have been losing their remotes since they were invented. I couldn\'t live without it, I wasn\'t constantly looking for the remotes, getting up and shaking the sheets to find them, they were always there and always together. That\'s when I knew other people need this product. So I created the Remote Rangler and my coworker friend Troy was one of my first customers. He loved it so much that he offered to help me launch it, and we became partners. Now we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}}'),(248,75,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(249,28,'_generate-full-width-content','true'),(254,76,'_fl_builder_data','a:24:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"a442a16cba\";s:6:\"delete\";s:10:\"f4bd051928\";s:4:\"edit\";s:10:\"e58b99d58c\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00e9ed\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"56\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:56;s:5:\"title\";s:22:\"secure-paypal-payments\";s:8:\"filename\";s:26:\"secure-paypal-payments.png\";s:3:\"url\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:4:\"link\";s:58:\"http://remoterangler.com/home/secure-paypal-payments/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:22:\"secure-paypal-payments\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725059000;s:8:\"modified\";i:1524725059000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"6c70fdd708\";s:6:\"delete\";s:10:\"dec711c771\";s:4:\"edit\";s:10:\"5fe521d700\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=56&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:12504;s:21:\"filesizeHumanReadable\";s:5:\"12 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:150;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:300;s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments-300x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:78:\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\";s:6:\"height\";i:150;s:5:\"width\";i:300;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(252,28,'_generate-disable-headline','true'),(255,76,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(257,2,'_edit_last','1'),(258,2,'_generate-sidebar-layout-meta','no-sidebar'),(578,141,'_fl_builder_data','a:34:{s:13:\"5ae294b4200fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4200fc\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b4201c6\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"title\";s:10:\"Innovation\";s:4:\"text\";s:93:\"<p>Traxit locavit piscibus retinebat pro dextra pendebat aliud tollere flexi est diverso.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"19\";s:10:\"image_type\";s:4:\"icon\";s:5:\"photo\";s:0:\"\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:17:\"fa fa-lightbulb-o\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"none\";s:8:\"cta_text\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"callout\";}}s:13:\"5ae294b420122\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420122\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4203e2\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:25;}}s:13:\"5ae294b420159\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420159\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4203e2\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:25;}}s:13:\"5ae294b42018f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42018f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420159\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":42:{s:5:\"title\";s:12:\"Get In Touch\";s:4:\"text\";s:123:\"<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h2\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"20\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"819\";s:10:\"photo_crop\";s:9:\"landscape\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:99:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_6779-1300x866-1024x682.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:819;s:5:\"title\";s:17:\"IMG_6779-1300x866\";s:8:\"filename\";s:21:\"IMG_6779-1300x866.jpg\";s:3:\"url\";s:90:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_6779-1300x866.jpg\";s:4:\"link\";s:63:\"https://demos.wpbeaverbuilder.com/homepage-2/img_6779-1300x866/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"img_6779-1300x866\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:82;s:4:\"date\";d:1406694738000;s:8:\"modified\";d:1406694738000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 30, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"a707bfdab3\";s:6:\"delete\";s:10:\"f4eedb1877\";s:4:\"edit\";s:10:\"16044e61d0\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=819&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:98:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_6779-1300x866-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:199;s:5:\"width\";i:300;s:3:\"url\";s:98:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_6779-1300x866-300x199.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:682;s:5:\"width\";i:1024;s:3:\"url\";s:99:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_6779-1300x866-1024x682.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:90:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_6779-1300x866.jpg\";s:6:\"height\";i:866;s:5:\"width\";i:1300;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:866;s:5:\"width\";i:1300;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae294b4201c6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4201c6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4201fc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae294b4201fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4201fc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b4203ac\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae294b420268\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420268\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b420725\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae294b42029e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42029e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b4204bb\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":41:{s:5:\"title\";s:9:\"Expertise\";s:4:\"text\";s:93:\"<p>Traxit locavit piscibus retinebat pro dextra pendebat aliud tollere flexi est diverso.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"19\";s:10:\"image_type\";s:4:\"icon\";s:5:\"photo\";s:0:\"\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:11:\"fa fa-users\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"none\";s:8:\"cta_text\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"callout\";s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae294b4202d4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4202d4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420122\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":42:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:123:\"<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h2\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"20\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"818\";s:10:\"photo_crop\";s:9:\"landscape\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/9814538046_86523fdb81_o-1300x870.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:818;s:5:\"title\";s:32:\"9814538046_86523fdb81_o-1300x870\";s:8:\"filename\";s:36:\"9814538046_86523fdb81_o-1300x870.jpg\";s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/9814538046_86523fdb81_o-1300x870.jpg\";s:4:\"link\";s:78:\"https://demos.wpbeaverbuilder.com/homepage-2/9814538046_86523fdb81_o-1300x870/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:32:\"9814538046_86523fdb81_o-1300x870\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:82;s:4:\"date\";d:1406694676000;s:8:\"modified\";d:1406694676000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 30, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"10e20e6842\";s:6:\"delete\";s:10:\"aaafc06dfb\";s:4:\"edit\";s:10:\"81ceb1e04f\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=818&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:113:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/9814538046_86523fdb81_o-1300x870-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:113:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/9814538046_86523fdb81_o-1300x870-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:685;s:5:\"width\";i:1024;s:3:\"url\";s:114:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/9814538046_86523fdb81_o-1300x870-1024x685.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/9814538046_86523fdb81_o-1300x870.jpg\";s:6:\"height\";i:870;s:5:\"width\";i:1300;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:870;s:5:\"width\";i:1300;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae294b42030a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42030a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:6:\"4-cols\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae294b420340\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420340\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4203e2\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:25;}}s:13:\"5ae294b420376\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420376\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420268\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae294b4203ac\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4203ac\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:5:\"solid\";s:12:\"border_color\";s:6:\"e8e8e8\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"0\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:6:\"layout\";s:6:\"4-cols\";}}s:13:\"5ae294b4203e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4203e2\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42030a\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae294b420418\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420418\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4203e2\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:25;}}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae294b4204bb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4204bb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4201fc\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae294b4204f1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4204f1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b4206ef\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":41:{s:5:\"title\";s:10:\"Excellence\";s:4:\"text\";s:93:\"<p>Traxit locavit piscibus retinebat pro dextra pendebat aliud tollere flexi est diverso.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"19\";s:10:\"image_type\";s:4:\"icon\";s:5:\"photo\";s:0:\"\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:12:\"fa fa-star-o\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"none\";s:8:\"cta_text\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"callout\";s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae294b420508\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420508\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420418\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":42:{s:5:\"title\";s:12:\"Our Services\";s:4:\"text\";s:123:\"<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h2\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"20\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"817\";s:10:\"photo_crop\";s:9:\"landscape\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:99:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_4340-1300x866-1024x682.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:817;s:5:\"title\";s:17:\"IMG_4340-1300x866\";s:8:\"filename\";s:21:\"IMG_4340-1300x866.jpg\";s:3:\"url\";s:90:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_4340-1300x866.jpg\";s:4:\"link\";s:63:\"https://demos.wpbeaverbuilder.com/homepage-2/img_4340-1300x866/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"img_4340-1300x866\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:82;s:4:\"date\";d:1406694644000;s:8:\"modified\";d:1406694644000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 30, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"68505ac145\";s:6:\"delete\";s:10:\"c5164a55a2\";s:4:\"edit\";s:10:\"fd85a7738e\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=817&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:98:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_4340-1300x866-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:199;s:5:\"width\";i:300;s:3:\"url\";s:98:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_4340-1300x866-300x199.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:682;s:5:\"width\";i:1024;s:3:\"url\";s:99:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_4340-1300x866-1024x682.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:90:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_4340-1300x866.jpg\";s:6:\"height\";i:866;s:5:\"width\";i:1300;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:866;s:5:\"width\";i:1300;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae294b42053f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42053f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":20:{s:6:\"height\";s:3:\"400\";s:9:\"auto_play\";s:1:\"1\";s:10:\"play_pause\";s:1:\"0\";s:5:\"delay\";s:1:\"9\";s:10:\"transition\";s:10:\"horizontal\";s:5:\"speed\";s:3:\"0.5\";s:6:\"arrows\";s:1:\"0\";s:4:\"dots\";s:1:\"1\";s:9:\"max_width\";s:4:\"1100\";s:6:\"slides\";a:2:{i:0;O:8:\"stdClass\":41:{s:5:\"label\";s:7:\"Slide 1\";s:9:\"bg_layout\";s:5:\"photo\";s:12:\"bg_photo_src\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/hero-image-4.jpg\";s:8:\"bg_photo\";s:3:\"814\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_video\";s:0:\"\";s:14:\"content_layout\";s:4:\"text\";s:8:\"fg_photo\";s:0:\"\";s:8:\"fg_video\";s:0:\"\";s:5:\"title\";s:29:\"A Team That Helps You Succeed\";s:4:\"text\";s:218:\"<p>Mundum tum duae rerum. Terra cornua. Ignea primaque nitidis dissaepserat mutatas derecti. Sunt circumfluus extendi aethere. Illic chaos: habentem zonae sorbentur meis peregrinum. Lucis formaeque ita chaos: erat.</p>\";s:9:\"title_tag\";s:2:\"h2\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:13:\"text_position\";s:4:\"left\";s:10:\"text_width\";s:2:\"30\";s:15:\"text_margin_top\";s:1:\"0\";s:18:\"text_margin_bottom\";s:1:\"0\";s:16:\"text_margin_left\";s:1:\"0\";s:17:\"text_margin_right\";s:1:\"0\";s:10:\"text_color\";s:6:\"ffffff\";s:11:\"text_shadow\";s:1:\"0\";s:13:\"text_bg_color\";s:6:\"292929\";s:15:\"text_bg_opacity\";s:2:\"70\";s:14:\"text_bg_height\";s:4:\"100%\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:6:\"button\";s:8:\"cta_text\";s:11:\"Get Started\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:13:\"btn_font_size\";s:2:\"16\";s:11:\"btn_padding\";s:2:\"14\";s:17:\"btn_border_radius\";s:1:\"6\";s:12:\"r_photo_type\";s:4:\"main\";s:7:\"r_photo\";s:0:\"\";s:12:\"r_text_color\";s:6:\"ffffff\";s:15:\"r_text_bg_color\";s:6:\"333333\";}i:1;O:8:\"stdClass\":41:{s:5:\"label\";s:7:\"Slide 2\";s:9:\"bg_layout\";s:5:\"photo\";s:12:\"bg_photo_src\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/03/hero-image-3.png\";s:8:\"bg_photo\";s:3:\"362\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_video\";s:0:\"\";s:14:\"content_layout\";s:4:\"text\";s:8:\"fg_photo\";s:0:\"\";s:8:\"fg_video\";s:0:\"\";s:5:\"title\";s:32:\"Totidem lumina adsiduis concordi\";s:4:\"text\";s:218:\"<p>Mundum tum duae rerum. Terra cornua. Ignea primaque nitidis dissaepserat mutatas derecti. Sunt circumfluus extendi aethere. Illic chaos: habentem zonae sorbentur meis peregrinum. Lucis formaeque ita chaos: erat.</p>\";s:9:\"title_tag\";s:2:\"h2\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:13:\"text_position\";s:4:\"left\";s:10:\"text_width\";s:2:\"30\";s:15:\"text_margin_top\";s:1:\"0\";s:18:\"text_margin_bottom\";s:2:\"60\";s:16:\"text_margin_left\";s:1:\"0\";s:17:\"text_margin_right\";s:1:\"0\";s:10:\"text_color\";s:6:\"ffffff\";s:11:\"text_shadow\";s:1:\"0\";s:13:\"text_bg_color\";s:6:\"292929\";s:15:\"text_bg_opacity\";s:2:\"70\";s:14:\"text_bg_height\";s:4:\"100%\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:6:\"button\";s:8:\"cta_text\";s:11:\"Get Started\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:13:\"btn_font_size\";s:2:\"16\";s:11:\"btn_padding\";s:2:\"14\";s:17:\"btn_border_radius\";s:1:\"6\";s:12:\"r_photo_type\";s:4:\"main\";s:7:\"r_photo\";s:0:\"\";s:12:\"r_text_color\";s:6:\"ffffff\";s:15:\"r_text_bg_color\";s:6:\"333333\";}}s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:2:\"-5\";s:11:\"margin_left\";s:1:\"0\";s:12:\"margin_right\";s:1:\"0\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:3:\"100\";s:4:\"type\";s:14:\"content-slider\";}}s:13:\"5ae294b420575\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420575\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"4\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae294b4205ab\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4205ab\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b42064d\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":19:{s:5:\"icons\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"icon\";s:14:\"fa fa-facebook\";s:4:\"link\";s:61:\"https://www.facebook.com/pages/FastLine-Media/106732702687887\";}i:1;O:8:\"stdClass\":2:{s:4:\"icon\";s:13:\"fa fa-twitter\";s:4:\"link\";s:33:\"https://twitter.com/fastlinemedia\";}i:2;O:8:\"stdClass\":2:{s:4:\"icon\";s:17:\"fa fa-google-plus\";s:4:\"link\";s:51:\"https://plus.google.com/115002760022100564436/posts\";}}s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";s:2:\"30\";s:7:\"spacing\";s:2:\"20\";s:5:\"align\";s:4:\"left\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:10:\"icon-group\";s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae294b4205e1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4205e1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b42064d\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":11:{s:4:\"text\";s:132:\"<h3>Get In Touch</h3><p>We would love to hear from you!</p><p>p 408.999.9999<br />f 408.888.8888<br />e themes@fastlinemedia.com</p>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae294b420617\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420617\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420683\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:66.659999999999996589394868351519107818603515625;}}s:13:\"5ae294b42064d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42064d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420683\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae294b420683\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420683\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b420575\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae294b4206b9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4206b9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420617\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":11:{s:7:\"address\";s:44:\"1865 Winchester Blvd #202 Campbell, CA 95008\";s:6:\"height\";s:3:\"400\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:3:\"map\";}}s:13:\"5ae294b4206ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4206ef\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4201fc\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae294b420725\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420725\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"000000\";s:10:\"bg_opacity\";s:1:\"5\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"20\";s:12:\"padding_left\";s:2:\"40\";s:13:\"padding_right\";s:2:\"40\";}}s:13:\"5ae294b42075b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42075b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420376\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"title\";s:54:\"Are you ready to find out how we can help you succeed?\";s:4:\"text\";s:73:\"<p>Ab iapeto secant grandia pendebat speciem orbem. Terris di induit.</p>\";s:6:\"layout\";s:6:\"inline\";s:9:\"alignment\";s:6:\"center\";s:7:\"spacing\";s:1:\"0\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"btn_text\";s:18:\"Get Started Today!\";s:8:\"btn_link\";s:1:\"#\";s:15:\"btn_link_target\";s:5:\"_self\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:13:\"btn_font_size\";s:2:\"16\";s:11:\"btn_padding\";s:2:\"14\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:3:\"cta\";}}s:13:\"5ae294b420791\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420791\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420340\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":42:{s:5:\"title\";s:9:\"Our Staff\";s:4:\"text\";s:123:\"<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h2\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"20\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"20\";s:10:\"photo_crop\";s:9:\"landscape\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:20;s:5:\"title\";s:24:\"iStock_000020420411Small\";s:8:\"filename\";s:28:\"iStock_000020420411Small.jpg\";s:3:\"url\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:4:\"link\";s:51:\"https://demos.wpbeaverbuilder.com/?attachment_id=20\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:74:\"A group of successful and satisfied businesspeople looking upwards smiling\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:24:\"istock_000020420411small\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1388106995000;s:8:\"modified\";d:1388106995000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:17:\"December 27, 2013\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"50603a81a0\";s:6:\"delete\";s:10:\"c387631e56\";s:4:\"edit\";s:10:\"466f6be0f2\";}s:8:\"editLink\";s:71:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=20&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:199;s:5:\"width\";i:300;s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small-300x199.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:6:\"height\";i:565;s:5:\"width\";i:849;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:565;s:5:\"width\";i:849;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:43:\"https://www.youtube.com/watch?v=pD2o8nm7_io\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}}'),(570,137,'_wp_attached_file','2018/04/20180308_203916.jpg'),(571,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2245;s:6:\"height\";i:2362;s:4:\"file\";s:27:\"2018/04/20180308_203916.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180308_203916-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180308_203916-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180308_203916-285x300.jpg\";s:5:\"width\";i:285;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20180308_203916-768x808.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:808;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180308_203916-973x1024.jpg\";s:5:\"width\";i:973;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20180308_203916-600x631.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180308_203916-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"20180308_203916-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20180308_203916-600x631.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180308_203916-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1520541521\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:16:\"0.00833333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(556,61,'_edit_lock','1524800222:1'),(557,61,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3015;s:6:\"height\";i:2964;s:4:\"file\";s:19:\"20180405_230244.jpg\";}s:18:\"full-1524797487966\";a:3:{s:5:\"width\";i:2000;s:6:\"height\";i:1966;s:4:\"file\";s:34:\"20180405_230244-e1524797316151.jpg\";}}'),(558,61,'uabb-cta-link',''),(559,61,'_edit_last','1'),(562,133,'_wp_attached_file','2018/04/All-the-remotes-1.png'),(563,133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3280;s:6:\"height\";i:3400;s:4:\"file\";s:29:\"2018/04/All-the-remotes-1.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"All-the-remotes-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-1-289x300.png\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-1-768x796.png\";s:5:\"width\";i:768;s:6:\"height\";i:796;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"All-the-remotes-1-988x1024.png\";s:5:\"width\";i:988;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-1-600x622.png\";s:5:\"width\";i:600;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"All-the-remotes-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-1-600x622.png\";s:5:\"width\";i:600;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(564,134,'_wp_attached_file','2018/04/All-the-remotes-2.png'),(565,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3280;s:6:\"height\";i:3400;s:4:\"file\";s:29:\"2018/04/All-the-remotes-2.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"All-the-remotes-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-2-289x300.png\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-2-768x796.png\";s:5:\"width\";i:768;s:6:\"height\";i:796;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"All-the-remotes-2-988x1024.png\";s:5:\"width\";i:988;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-2-600x622.png\";s:5:\"width\";i:600;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"All-the-remotes-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-2-600x622.png\";s:5:\"width\";i:600;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(566,135,'_wp_attached_file','2018/04/All-the-remotes-3.png'),(567,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3280;s:6:\"height\";i:3400;s:4:\"file\";s:29:\"2018/04/All-the-remotes-3.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"All-the-remotes-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-3-289x300.png\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-3-768x796.png\";s:5:\"width\";i:768;s:6:\"height\";i:796;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"All-the-remotes-3-988x1024.png\";s:5:\"width\";i:988;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-3-600x622.png\";s:5:\"width\";i:600;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"All-the-remotes-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-3-600x622.png\";s:5:\"width\";i:600;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"All-the-remotes-3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259,2,'_fl_builder_data','a:30:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":28:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:167:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/G-aqHkBC2-o?autoplay=1\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";s:10:\"poster_src\";s:0:\"\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"178\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:178;s:5:\"title\";s:15:\"20180430_015733\";s:8:\"filename\";s:19:\"20180430_015733.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:4:\"link\";s:57:\"http://remoterangler.com/howitworks/20180430_015733/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180430_015733\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:2;s:4:\"date\";i:1525081487000;s:8:\"modified\";i:1525081487000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 30, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"23cff0ccfe\";s:6:\"delete\";s:10:\"439f04e8f4\";s:4:\"edit\";s:10:\"46b1e8787d\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=178&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:61:\"http://remoterangler.com/wp-admin/post.php?post=2&action=edit\";s:15:\"uploadedToTitle\";s:12:\"How It Works\";s:15:\"filesizeInBytes\";i:2092955;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:168;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-168x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:572;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2d17082ffe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29e0ea9cb8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9cb8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29e0ea9e18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9e18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29e0ea9cb8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29e0ea9bf4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9bf4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae29e5a020ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e5a020ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0075a0\";s:14:\"bg_hover_color\";s:6:\"00e0b3\";s:10:\"text_color\";s:6:\"050001\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2d17082ffe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2d17082ffe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}}'),(260,2,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(582,143,'_fl_builder_data','a:26:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/pD2o8nm7_io?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"62\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:62;s:5:\"title\";s:15:\"20180308_202833\";s:8:\"filename\";s:19:\"20180308_202833.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180308_202833/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_202833\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726677000;s:8:\"modified\";i:1524726677000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"93b5e1c2d3\";s:6:\"delete\";s:10:\"e24417f94a\";s:4:\"edit\";s:10:\"50a5faa22b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=62&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:1831781;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2710;s:5:\"width\";i:1416;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:157;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-157x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:535;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-535x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:6:\"height\";i:2710;s:5:\"width\";i:1416;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d028d2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d028d2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d028d2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:2:\"tt\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}}'),(568,136,'_fl_builder_data','a:41:{s:13:\"5ae28d316a5a2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a5a2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316aabf\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":17:{s:4:\"icon\";s:18:\"fa fa-chevron-down\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";s:2:\"30\";s:5:\"align\";s:6:\"center\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:4:\"icon\";}}s:13:\"5ae28d316a5dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a5dc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316a78f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";s:2:\"60\";s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:2:\"20\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316a614\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a614\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316a5dc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:34:\"Everything you need, in one place.\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h2\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"56\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:2:\"60\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae28d316a64a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a64a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316a759\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"807\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";i:40;s:9:\"photo_src\";s:77:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/desk.jpg\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:807;s:5:\"title\";s:4:\"desk\";s:8:\"filename\";s:8:\"desk.jpg\";s:3:\"url\";s:77:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/desk.jpg\";s:4:\"link\";s:48:\"https://demos.wpbeaverbuilder.com/scroller/desk/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:4:\"desk\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:494;s:4:\"date\";d:1406610409000;s:8:\"modified\";d:1406610409000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 29, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"8d3534b0f7\";s:6:\"delete\";s:10:\"c6c84dfc61\";s:4:\"edit\";s:10:\"b3b00810b6\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=807&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/desk-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/desk-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:77:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/desk.jpg\";s:6:\"height\";i:667;s:5:\"width\";i:1000;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:667;s:5:\"width\";i:1000;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae28d316a680\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a680\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316aa1d\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae28d316a6b7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a6b7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316a723\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:31:\"The best place to work, period.\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h2\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"56\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:2:\"60\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae28d316a6ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a6ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316a5dc\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":11:{s:4:\"text\";s:194:\"<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p><p><a href=\"#\">Read More</a></p>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:2:\"50\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae28d316a723\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a723\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316a680\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";s:2:\"60\";s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316a759\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a759\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316a680\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:40;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316a78f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a78f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316aa89\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae28d316a7c5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a7c5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:4:\"full\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:8:\"parallax\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:3:\"135\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:15:\"xlarge_triangle\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"200\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"300\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:73:\"http://remoterangler.com/wp-content/uploads/2018/04/All-the-remotes-3.png\";}}s:13:\"5ae28d316a7fb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a7fb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316a8d3\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae28d316a831\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a831\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316aabf\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:11:\"Get Started\";s:4:\"icon\";s:0:\"\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"18\";s:7:\"padding\";s:2:\"18\";s:13:\"border_radius\";s:1:\"4\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:6:\"button\";}}s:13:\"5ae28d316a867\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a867\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316aabf\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:20:\"Welcome To Scroller!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"60\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"40\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:3:\"100\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae28d316a89d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a89d\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:8:\"parallax\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:3:\"505\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"250\";s:14:\"padding_bottom\";s:3:\"250\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:80:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/freeway.jpg\";}}s:13:\"5ae28d316a8d3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a8d3\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"4\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:8:\"parallax\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:3:\"509\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"250\";s:14:\"padding_bottom\";s:3:\"250\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/alley.jpg\";}}s:13:\"5ae28d316a90a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a90a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316aabf\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:121:\"<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">A parallax theme for the FastLine Page Builder.</span></p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae28d316a90f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a90f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316a7fb\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae28d316a945\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a945\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316a723\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":11:{s:4:\"text\";s:194:\"<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p><p><a href=\"#\">Read More</a></p>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:2:\"60\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae28d316a97b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a97b\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316a7c5\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae28d316a9b1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a9b1\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316aa53\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae28d316a9e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a9e7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316a78f\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:40;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316aa1d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316aa1d\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"100\";s:14:\"padding_bottom\";s:3:\"100\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316aa53\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316aa53\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316a89d\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae28d316aa89\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316aa89\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"100\";s:14:\"padding_bottom\";s:3:\"100\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316aabf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316aabf\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316a97b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae28d316aaf5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316aaf5\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316ab2b\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:50;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316ab2b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ab2b\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316ac39\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5ae28d316ab61\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ab61\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316ab2b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:50;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316ab97\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ab97\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316abcd\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":13:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae28d316abcd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316abcd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316adcf\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae28d316ac03\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ac03\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316ac70\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:31:\"We would love to hear from you.\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"56\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";i:100;s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae28d316ac39\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ac39\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"5\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"100\";s:14:\"padding_bottom\";s:3:\"100\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316ac70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ac70\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316aca6\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae28d316aca6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316aca6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316ac39\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae28d316acdc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316acdc\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316aaf5\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":11:{s:12:\"mailto_email\";s:24:\"themes@fastlinemedia.com\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:12:\"contact-form\";s:8:\"col_size\";i:50;}}s:13:\"5ae28d316acf7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316acf7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316ab61\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":12:{s:7:\"address\";s:39:\"1865 Winchester Blvd. Campbell CA 95008\";s:6:\"height\";s:3:\"340\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:3:\"map\";s:8:\"col_size\";i:50;}}s:13:\"5ae28d316ad2c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ad2c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316ac70\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":11:{s:4:\"text\";s:145:\"<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">408.999.9999 • </span><span style=\"font-size: 14pt;\">info@yourbiz.com</span></p>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";i:100;}}s:13:\"5ae28d316ad63\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ad63\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316abcd\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":19:{s:5:\"icons\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"icon\";s:14:\"fa fa-facebook\";s:4:\"link\";s:61:\"https://www.facebook.com/pages/FastLine-Media/106732702687887\";}i:1;O:8:\"stdClass\":2:{s:4:\"icon\";s:13:\"fa fa-twitter\";s:4:\"link\";s:33:\"https://twitter.com/fastlinemedia\";}i:2;O:8:\"stdClass\":2:{s:4:\"icon\";s:17:\"fa fa-google-plus\";s:4:\"link\";s:45:\"https://plus.google.com/115002760022100564436\";}}s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";s:2:\"46\";s:7:\"spacing\";s:2:\"30\";s:5:\"align\";s:6:\"center\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:10:\"icon-group\";s:8:\"col_size\";i:100;}}s:13:\"5ae28d316ad99\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ad99\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316a9e7\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"806\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:2:\"40\";s:9:\"photo_src\";s:83:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/iphone-pen.jpg\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:806;s:5:\"title\";s:10:\"iphone-pen\";s:8:\"filename\";s:14:\"iphone-pen.jpg\";s:3:\"url\";s:83:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/iphone-pen.jpg\";s:4:\"link\";s:54:\"https://demos.wpbeaverbuilder.com/scroller/iphone-pen/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:10:\"iphone-pen\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:494;s:4:\"date\";d:1406610357000;s:8:\"modified\";d:1406610357000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 29, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"31a3cb490d\";s:6:\"delete\";s:10:\"d32b2bc5b0\";s:4:\"edit\";s:10:\"07b6fc739b\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=806&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:91:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/iphone-pen-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:91:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/iphone-pen-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:83:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/iphone-pen.jpg\";s:6:\"height\";i:667;s:5:\"width\";i:1000;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:667;s:5:\"width\";i:1000;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae28d316adcf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316adcf\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316ac39\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}}'),(261,2,'_fl_builder_enabled','1'),(262,78,'_fl_builder_data','a:59:{s:13:\"5ae192f75a9e3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75a9e3\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ab5b\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:7:\"heading\";s:18:\"Latest Discussions\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae192f75aa1d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75aa1d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ab5b\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":11:{s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:22:\"widget-recent-comments\";O:8:\"stdClass\":2:{s:5:\"title\";s:1:\" \";s:6:\"number\";s:1:\"2\";}s:6:\"widget\";s:25:\"WP_Widget_Recent_Comments\";s:4:\"type\";s:6:\"widget\";}}s:13:\"5ae192f75aa53\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75aa53\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b1fe\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"650\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:2:\"25\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";i:25;s:9:\"photo_src\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/facebook-logo.png\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:650;s:5:\"title\";s:13:\"facebook-logo\";s:8:\"filename\";s:17:\"facebook-logo.png\";s:3:\"url\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/facebook-logo.png\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=650\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:13:\"facebook-logo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1404942306000;s:8:\"modified\";d:1404942306000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:12:\"July 9, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"426caf1b02\";s:6:\"delete\";s:10:\"5ed1ca2023\";s:4:\"edit\";s:10:\"a8808c5897\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=650&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:35;s:5:\"width\";i:150;s:3:\"url\";s:93:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/facebook-logo-150x35.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/facebook-logo.png\";s:6:\"height\";i:35;s:5:\"width\";i:177;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:35;s:5:\"width\";i:177;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae192f75aa8a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75aa8a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b50d\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:11:\"Get Started\";s:4:\"icon\";s:0:\"\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:4:\"left\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:8:\"col_size\";i:50;s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:2:\"40\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:6:\"button\";}}s:13:\"5ae192f75aab8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75aab8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b284\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae192f75aaee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75aaee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b4a1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"title\";s:16:\"Nicolas Janssens\";s:4:\"text\";s:151:\"<p><span style=\"color: #999999;\">Fossae permisit terris animalibus. Convexi vis terrarum cepit. Nulli caligine nec effigiem capacius membra.</span></p>\";s:5:\"align\";s:6:\"center\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"559\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"none\";s:8:\"cta_text\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:8:\"col_size\";s:5:\"33.33\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"photo_src\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-2.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:559;s:5:\"title\";s:8:\"expert-2\";s:8:\"filename\";s:12:\"expert-2.jpg\";s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-2.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=559\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"expert-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1402612811000;s:8:\"modified\";d:1402612811000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"June 12, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"11ed769739\";s:6:\"delete\";s:10:\"6555d9da5a\";s:4:\"edit\";s:10:\"05cd7f949e\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=559&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-2-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-2.jpg\";s:6:\"height\";i:255;s:5:\"width\";i:204;s:11:\"orientation\";s:8:\"portrait\";}}s:6:\"height\";i:255;s:5:\"width\";i:204;s:11:\"orientation\";s:8:\"portrait\";}}}s:13:\"5ae192f75ab24\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ab24\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75aab8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75ab5b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ab5b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75aab8\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75ab91\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ab91\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b017\";s:8:\"position\";s:1:\"4\";s:8:\"settings\";N;}s:13:\"5ae192f75abc7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75abc7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ae9c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"title\";s:13:\"Octav Videanu\";s:4:\"text\";s:151:\"<p><span style=\"color: #999999;\">Fossae permisit terris animalibus. Convexi vis terrarum cepit. Nulli caligine nec effigiem capacius membra.</span></p>\";s:5:\"align\";s:6:\"center\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"558\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"none\";s:8:\"cta_text\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:8:\"col_size\";s:5:\"33.33\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"photo_src\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-3.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:558;s:5:\"title\";s:8:\"expert-3\";s:8:\"filename\";s:12:\"expert-3.jpg\";s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-3.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=558\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"expert-3\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1402612808000;s:8:\"modified\";d:1402612808000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"June 12, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1555abbcca\";s:6:\"delete\";s:10:\"380e8a9e5b\";s:4:\"edit\";s:10:\"f53266fc53\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=558&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-3-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-3.jpg\";s:6:\"height\";i:255;s:5:\"width\";i:204;s:11:\"orientation\";s:8:\"portrait\";}}s:6:\"height\";i:255;s:5:\"width\";i:204;s:11:\"orientation\";s:8:\"portrait\";}}}s:13:\"5ae192f75abfd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75abfd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75ab91\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae192f75ac33\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ac33\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b017\";s:8:\"position\";s:1:\"5\";s:8:\"settings\";N;}s:13:\"5ae192f75ac69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ac69\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75ac9f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae192f75ac9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ac9f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b017\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5ae192f75acd5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75acd5\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75afab\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae192f75ad0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ad0b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ae86\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:228:\"<h3>Curabitur quis tincidunt diam.</h3><p>Donec et quam at elit tempus feugiat. Proin lorem ante, pulvinar sed tempor quis, semper nec erat. Etiam nec augue in elit vulputate sodales. Etiam ornare mollis sapien non lobortis.</p>\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:2:\"30\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:2:\"40\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae192f75ad41\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ad41\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b0ba\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:25;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75ad78\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ad78\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75aab8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75adae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75adae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ab5b\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":11:{s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:1:\"0\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:19:\"widget-recent-posts\";O:8:\"stdClass\":2:{s:5:\"title\";s:1:\" \";s:6:\"number\";s:1:\"4\";}s:6:\"widget\";s:22:\"WP_Widget_Recent_Posts\";s:4:\"type\";s:6:\"widget\";}}s:13:\"5ae192f75ade4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ade4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ab5b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:7:\"heading\";s:12:\"Recent Posts\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae192f75ae1a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ae1a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ab24\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:10:\"Contact Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";s:8:\"col_size\";i:25;}}s:13:\"5ae192f75ae50\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ae50\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ad78\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:16:\"Find us Socially\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";s:8:\"col_size\";i:25;}}s:13:\"5ae192f75ae86\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ae86\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b327\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae192f75ae9c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ae9c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75ac33\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae192f75aed2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75aed2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75acd5\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:4:\"text\";s:152:\"<p style=\"text-align: center;\"><span style=\"font-size: large;\">Consectetur adipiscing elit mauris rutrum neque placerat leo pharetra laoreet.</span></p>\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae192f75af08\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75af08\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b46b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae192f75af3f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75af3f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b192\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae192f75af75\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75af75\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ad41\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"652\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:2:\"35\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";i:25;s:9:\"photo_src\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/amazon-logo.png\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:652;s:5:\"title\";s:11:\"amazon-logo\";s:8:\"filename\";s:15:\"amazon-logo.png\";s:3:\"url\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/amazon-logo.png\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=652\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:11:\"amazon-logo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1404942312000;s:8:\"modified\";d:1404942312000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:12:\"July 9, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"591bf2d69f\";s:6:\"delete\";s:10:\"9d8ecb71c6\";s:4:\"edit\";s:10:\"04b042384e\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=652&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:43;s:5:\"width\";i:150;s:3:\"url\";s:91:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/amazon-logo-150x43.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/amazon-logo.png\";s:6:\"height\";i:43;s:5:\"width\";i:191;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:43;s:5:\"width\";i:191;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae192f75afab\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75afab\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b435\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae192f75afe1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75afe1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75af3f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"552\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:2:\"40\";s:12:\"margin_right\";s:1:\"0\";s:9:\"photo_src\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/art-macbook.jpg\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:552;s:5:\"title\";s:11:\"art-macbook\";s:8:\"filename\";s:15:\"art-macbook.jpg\";s:3:\"url\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/art-macbook.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=552\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:11:\"art-macbook\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1402610402000;s:8:\"modified\";d:1402610402000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"June 12, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"47215a698a\";s:6:\"delete\";s:10:\"2fa593d4a9\";s:4:\"edit\";s:10:\"9b1f48e2f9\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=552&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:92:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/art-macbook-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:225;s:5:\"width\";i:300;s:3:\"url\";s:92:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/art-macbook-300x225.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/art-macbook.jpg\";s:6:\"height\";i:562;s:5:\"width\";i:749;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:562;s:5:\"width\";i:749;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae192f75b017\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b017\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":32:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"20\";s:14:\"padding_bottom\";s:2:\"60\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:6:\"layout\";s:6:\"2-cols\";}}s:13:\"5ae192f75b04d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b04d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75acd5\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:35:\"An Elegant WordPress Theme Solution\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"ffffff\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"46\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:3:\"100\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae192f75b083\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b083\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ad78\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":10:{s:4:\"html\";s:383:\"<iframe src=\"//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FFastLine-Media%2F106732702687887&width=400&height=5508&colorscheme=dark&show_faces=true&header=false&stream=false&show_border=false&appId=525994720806655\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:250px; height:350px;\" allowTransparency=\"true\"></iframe>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:4:\"html\";}}s:13:\"5ae192f75b0ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b0ba\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b35d\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae192f75b0f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b0f0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b0ba\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:25;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75b126\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b126\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75ac33\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae192f75b15c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b15c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b126\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"title\";s:11:\"Levi Watson\";s:4:\"text\";s:151:\"<p><span style=\"color: #999999;\">Fossae permisit terris animalibus. Convexi vis terrarum cepit. Nulli caligine nec effigiem capacius membra.</span></p>\";s:5:\"align\";s:6:\"center\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"555\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"none\";s:8:\"cta_text\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:8:\"col_size\";s:5:\"33.33\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"photo_src\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-1.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:555;s:5:\"title\";s:8:\"expert-1\";s:8:\"filename\";s:12:\"expert-1.jpg\";s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-1.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=555\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"expert-1\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1402612546000;s:8:\"modified\";d:1402612546000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"June 12, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4f59724736\";s:6:\"delete\";s:10:\"58d90f1224\";s:4:\"edit\";s:10:\"fa74d353fd\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=555&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-1-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-1.jpg\";s:6:\"height\";i:255;s:5:\"width\";i:204;s:11:\"orientation\";s:8:\"portrait\";}}s:6:\"height\";i:255;s:5:\"width\";i:204;s:11:\"orientation\";s:8:\"portrait\";}}}s:13:\"5ae192f75b192\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b192\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b017\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";N;}s:13:\"5ae192f75b1c8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b1c8\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b327\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae192f75b1fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b1fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b0ba\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:25;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75b234\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b234\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b50d\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:228:\"<h3>Curabitur quis tincidunt diam.</h3><p>Donec et quam at elit tempus feugiat. Proin lorem ante, pulvinar sed tempor quis, semper nec erat. Etiam nec augue in elit vulputate sodales. Etiam ornare mollis sapien non lobortis.</p>\";s:8:\"col_size\";i:50;s:10:\"margin_top\";s:2:\"30\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:2:\"40\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae192f75b26a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b26a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75abfd\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:16:\"Meet the Experts\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:2:\"30\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae192f75b284\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b284\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:6:\"ffffff\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"2d2d2e\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"50\";s:14:\"padding_bottom\";s:2:\"50\";s:12:\"padding_left\";s:2:\"50\";s:13:\"padding_right\";s:2:\"50\";s:6:\"layout\";s:5:\"1-col\";}}s:13:\"5ae192f75b2bb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b2bb\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ac69\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"e3e3e3\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"40\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae192f75b2f1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b2f1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75abfd\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"e3e3e3\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";i:100;s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"40\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae192f75b327\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b327\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b017\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5ae192f75b35d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b35d\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"1b1b1c\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75b393\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b393\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ae86\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":19:{s:4:\"text\";s:11:\"Get Started\";s:4:\"icon\";s:0:\"\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:5:\"width\";s:4:\"auto\";s:5:\"align\";s:4:\"left\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:2:\"40\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:6:\"button\";}}s:13:\"5ae192f75b3c9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b3c9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75acd5\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:18:\"Let\'s get started!\";s:4:\"icon\";s:0:\"\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"19\";s:7:\"padding\";s:2:\"16\";s:13:\"border_radius\";s:1:\"3\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:2:\"30\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:6:\"button\";}}s:13:\"5ae192f75b3ff\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b3ff\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75af08\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:26:\"Design / Branding Examples\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:2:\"30\";s:13:\"margin_bottom\";s:2:\"40\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae192f75b435\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b435\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:6:\"d1d1d1\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:3:\"523\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:12:\"right bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"130\";s:14:\"padding_bottom\";s:3:\"170\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:6:\"layout\";s:5:\"1-col\";s:12:\"bg_image_src\";s:76:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/707.jpg\";}}s:13:\"5ae192f75b46b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b46b\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b017\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae192f75b4a1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b4a1\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75ac33\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae192f75b4d7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b4d7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b0ba\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:25;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75b50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b50d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b192\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae192f75b543\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b543\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b0f0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"646\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:2:\"30\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";i:25;s:9:\"photo_src\";s:87:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/microsoft-logo.png\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:646;s:5:\"title\";s:14:\"microsoft-logo\";s:8:\"filename\";s:18:\"microsoft-logo.png\";s:3:\"url\";s:87:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/microsoft-logo.png\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=646\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:14:\"microsoft-logo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1404940351000;s:8:\"modified\";d:1404940351000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:12:\"July 9, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4724acc8a3\";s:6:\"delete\";s:10:\"bc1e60d898\";s:4:\"edit\";s:10:\"d0e63525b5\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=646&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:48;s:5:\"width\";i:150;s:3:\"url\";s:94:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/microsoft-logo-150x48.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/microsoft-logo.png\";s:6:\"height\";i:48;s:5:\"width\";i:225;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:48;s:5:\"width\";i:225;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae192f75b57a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b57a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b4d7\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"651\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:2:\"35\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";i:25;s:9:\"photo_src\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/oracle-logo.png\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:651;s:5:\"title\";s:11:\"oracle-logo\";s:8:\"filename\";s:15:\"oracle-logo.png\";s:3:\"url\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/oracle-logo.png\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=651\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:11:\"oracle-logo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1404942309000;s:8:\"modified\";d:1404942309000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:12:\"July 9, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e69ee06755\";s:6:\"delete\";s:10:\"ac944d1ea7\";s:4:\"edit\";s:10:\"f453e48b24\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=651&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:24;s:5:\"width\";i:150;s:3:\"url\";s:91:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/oracle-logo-150x24.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/oracle-logo.png\";s:6:\"height\";i:24;s:5:\"width\";i:187;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:24;s:5:\"width\";i:187;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae192f75b5b0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b5b0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ab24\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":11:{s:12:\"mailto_email\";s:21:\"fake-email@google.com\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:2:\"90\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:12:\"contact-form\";s:8:\"col_size\";i:25;}}s:13:\"5ae192f75b5e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b5e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b1c8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"549\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:2:\"40\";s:12:\"margin_right\";s:1:\"0\";s:9:\"photo_src\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/lou-macbook1.jpg\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:549;s:5:\"title\";s:11:\"lou-macbook\";s:8:\"filename\";s:16:\"lou-macbook1.jpg\";s:3:\"url\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/lou-macbook1.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=549\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:13:\"lou-macbook-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1402609210000;s:8:\"modified\";d:1402609210000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"June 12, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"6fc0fe1cd2\";s:6:\"delete\";s:10:\"c99f86bd25\";s:4:\"edit\";s:10:\"1d0bdfe61b\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=549&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:93:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/lou-macbook1-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:225;s:5:\"width\";i:300;s:3:\"url\";s:93:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/lou-macbook1-300x225.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/lou-macbook1.jpg\";s:6:\"height\";i:562;s:5:\"width\";i:749;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:562;s:5:\"width\";i:749;s:11:\"orientation\";s:9:\"landscape\";}}}}'),(263,78,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1158,220,'_yoast_wpseo_content_score','60'),(347,91,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(351,82,'sharing_disabled','1'),(352,82,'_generate-disable-nav','true'),(353,82,'_generate-disable-secondary-nav','true'),(1156,225,'_wp_attached_file','2018/06/Itchy-Palms.wma'),(560,132,'_wp_attached_file','2018/04/All-the-remotes.png'),(561,132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1925;s:6:\"height\";i:2959;s:4:\"file\";s:27:\"2018/04/All-the-remotes.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"All-the-remotes-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"All-the-remotes-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"All-the-remotes-195x300.png\";s:5:\"width\";i:195;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"All-the-remotes-768x1181.png\";s:5:\"width\";i:768;s:6:\"height\";i:1181;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"All-the-remotes-666x1024.png\";s:5:\"width\";i:666;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"All-the-remotes-600x922.png\";s:5:\"width\";i:600;s:6:\"height\";i:922;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"All-the-remotes-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"All-the-remotes-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"All-the-remotes-600x922.png\";s:5:\"width\";i:600;s:6:\"height\";i:922;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"All-the-remotes-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(357,95,'_wc_review_count','0'),(358,95,'_wc_rating_count','a:0:{}'),(359,95,'_wc_average_rating','0'),(360,95,'_edit_last','1'),(361,95,'_edit_lock','1525081875:1'),(362,95,'_thumbnail_id','181'),(392,95,'_wpas_done_all','1'),(364,95,'_sku',''),(365,95,'_regular_price','28.99'),(366,95,'_sale_price',''),(367,95,'_sale_price_dates_from',''),(368,95,'_sale_price_dates_to',''),(369,95,'total_sales','7'),(370,95,'_tax_status','taxable'),(371,95,'_tax_class',''),(372,95,'_manage_stock','no'),(373,95,'_backorders','no'),(374,95,'_sold_individually','no'),(375,95,'_weight',''),(376,95,'_length',''),(377,95,'_width',''),(378,95,'_height',''),(379,95,'_upsell_ids','a:0:{}'),(380,95,'_crosssell_ids','a:0:{}'),(381,95,'_purchase_note',''),(382,95,'_default_attributes','a:0:{}'),(383,95,'_virtual','no'),(384,95,'_downloadable','no'),(385,95,'_product_image_gallery','173,174'),(386,95,'_download_limit','-1'),(387,95,'_download_expiry','-1'),(388,95,'_stock',NULL),(389,95,'_stock_status','instock'),(390,95,'_product_version','3.3.5'),(391,95,'_price','28.99'),(393,85,'_edit_lock','1524736931:1'),(394,85,'_edit_last','1'),(499,109,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(498,109,'_menu_item_target',''),(497,109,'_menu_item_object','page'),(496,109,'_menu_item_object_id','82'),(495,109,'_menu_item_menu_item_parent','0'),(494,109,'_menu_item_type','post_type'),(493,109,'_publicize_pending','1'),(492,108,'_menu_item_url',''),(491,108,'_menu_item_xfn',''),(490,108,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(489,108,'_menu_item_target',''),(488,108,'_menu_item_object','page'),(476,107,'_menu_item_type','post_type'),(458,105,'_menu_item_type','custom'),(457,105,'_publicize_pending','1'),(514,111,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(515,29,'_fl_builder_draft','a:13:{s:13:\"5ae1a96ae7179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7179\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae71af\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71af\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7179\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae71e5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71e5\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:30;}}s:13:\"5ae1a96ae721b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae721b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"size\";s:2:\"70\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7287\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7287\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:196:\"<span style=\"color: #999999;\">Don’t hestiate to ask us something. Email us directly </span><span style=\"color: #999999;\"><span style=\"color: #808080;\"><b>Joewillett44@gmail.com</b></span></span>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae1a96ae72be\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae72be\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:12:\"mailto_email\";s:0:\"\";s:11:\"name_toggle\";s:4:\"show\";s:14:\"subject_toggle\";s:4:\"hide\";s:12:\"email_toggle\";s:4:\"show\";s:12:\"phone_toggle\";s:4:\"show\";s:14:\"success_action\";s:4:\"none\";s:15:\"success_message\";s:50:\"Thanks for your message! We’ll be in touch soon.\";s:11:\"success_url\";s:0:\"\";s:8:\"btn_text\";s:12:\"Send Message\";s:8:\"btn_icon\";s:11:\"fa fa-check\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:6:\"999999\";s:18:\"btn_bg_hover_color\";s:6:\"333333\";s:14:\"btn_text_color\";s:6:\"ffffff\";s:20:\"btn_text_hover_color\";s:6:\"FFFFFF\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:3:\"100\";s:21:\"btn_button_transition\";s:6:\"enable\";s:9:\"btn_width\";s:4:\"auto\";s:9:\"btn_align\";s:4:\"left\";s:13:\"btn_font_size\";s:2:\"15\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"3\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"50\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:12:\"contact-form\";s:18:\"success_url-search\";s:0:\"\";}}s:13:\"5ae1a96ae7360\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7360\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:2:\"25\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae73cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae73cc\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":8:{s:4:\"icon\";s:21:\"fa fa-linkedin-square\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:4:\"left\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae1a96ae7402\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7402\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:6:\"f7f7f7\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7438\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7438\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7402\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae746e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae746e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae7438\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1a96ae74a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae74a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae746e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:10:\"Contact Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"777777\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae7511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:20:\"LET’S GET IN TOUCH\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(517,29,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(516,29,'_edit_lock','1524823191:1'),(529,114,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(530,115,'_wp_attached_file','2018/04/secure_checkout_now_large_large.png'),(531,115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:324;s:4:\"file\";s:43:\"2018/04/secure_checkout_now_large_large.png\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"secure_checkout_now_large_large-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"secure_checkout_now_large_large-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"secure_checkout_now_large_large-300x203.png\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"secure_checkout_now_large_large-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:43:\"secure_checkout_now_large_large-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"secure_checkout_now_large_large-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}');
INSERT INTO `wprl_postmeta` VALUES (532,116,'_fl_builder_data','a:24:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"a442a16cba\";s:6:\"delete\";s:10:\"f4bd051928\";s:4:\"edit\";s:10:\"e58b99d58c\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00e9ed\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(518,29,'_fl_builder_data','a:13:{s:13:\"5ae1a96ae7179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7179\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae71af\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71af\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7179\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae71e5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71e5\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:30;}}s:13:\"5ae1a96ae721b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae721b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"size\";s:2:\"70\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7287\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7287\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:196:\"<span style=\"color: #999999;\">Don’t hestiate to ask us something. Email us directly </span><span style=\"color: #999999;\"><span style=\"color: #808080;\"><b>Joewillett44@gmail.com</b></span></span>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae1a96ae72be\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae72be\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:12:\"mailto_email\";s:0:\"\";s:11:\"name_toggle\";s:4:\"show\";s:14:\"subject_toggle\";s:4:\"hide\";s:12:\"email_toggle\";s:4:\"show\";s:12:\"phone_toggle\";s:4:\"show\";s:14:\"success_action\";s:4:\"none\";s:15:\"success_message\";s:50:\"Thanks for your message! We’ll be in touch soon.\";s:11:\"success_url\";s:0:\"\";s:8:\"btn_text\";s:12:\"Send Message\";s:8:\"btn_icon\";s:11:\"fa fa-check\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:6:\"999999\";s:18:\"btn_bg_hover_color\";s:6:\"333333\";s:14:\"btn_text_color\";s:6:\"ffffff\";s:20:\"btn_text_hover_color\";s:6:\"FFFFFF\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:3:\"100\";s:21:\"btn_button_transition\";s:6:\"enable\";s:9:\"btn_width\";s:4:\"auto\";s:9:\"btn_align\";s:4:\"left\";s:13:\"btn_font_size\";s:2:\"15\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"3\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"50\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:12:\"contact-form\";s:18:\"success_url-search\";s:0:\"\";}}s:13:\"5ae1a96ae7360\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7360\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:2:\"25\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae73cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae73cc\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":8:{s:4:\"icon\";s:21:\"fa fa-linkedin-square\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:4:\"left\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae1a96ae7402\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7402\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:6:\"f7f7f7\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7438\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7438\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7402\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae746e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae746e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae7438\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1a96ae74a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae74a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae746e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:10:\"Contact Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"777777\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae7511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:20:\"LET’S GET IN TOUCH\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(519,29,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(528,114,'_fl_builder_data','a:13:{s:13:\"5ae1a96ae7179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7179\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae71af\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71af\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7179\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae71e5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71e5\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:30;}}s:13:\"5ae1a96ae721b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae721b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"size\";s:2:\"70\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7287\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7287\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:196:\"<span style=\"color: #999999;\">Don’t hestiate to ask us something. Email us directly </span><span style=\"color: #999999;\"><span style=\"color: #808080;\"><b>Joewillett44@gmail.com</b></span></span>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae1a96ae72be\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae72be\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:12:\"mailto_email\";s:0:\"\";s:11:\"name_toggle\";s:4:\"show\";s:14:\"subject_toggle\";s:4:\"hide\";s:12:\"email_toggle\";s:4:\"show\";s:12:\"phone_toggle\";s:4:\"show\";s:14:\"success_action\";s:4:\"none\";s:15:\"success_message\";s:50:\"Thanks for your message! We’ll be in touch soon.\";s:11:\"success_url\";s:0:\"\";s:8:\"btn_text\";s:12:\"Send Message\";s:8:\"btn_icon\";s:11:\"fa fa-check\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:6:\"999999\";s:18:\"btn_bg_hover_color\";s:6:\"333333\";s:14:\"btn_text_color\";s:6:\"ffffff\";s:20:\"btn_text_hover_color\";s:6:\"FFFFFF\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:3:\"100\";s:21:\"btn_button_transition\";s:6:\"enable\";s:9:\"btn_width\";s:4:\"auto\";s:9:\"btn_align\";s:4:\"left\";s:13:\"btn_font_size\";s:2:\"15\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"3\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"50\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:12:\"contact-form\";s:18:\"success_url-search\";s:0:\"\";}}s:13:\"5ae1a96ae7360\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7360\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:2:\"25\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae73cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae73cc\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:3:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":8:{s:4:\"icon\";s:20:\"fa fa-twitter-square\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"00eae6\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:2;O:8:\"stdClass\":8:{s:4:\"icon\";s:21:\"fa fa-linkedin-square\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:4:\"left\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae1a96ae7402\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7402\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:6:\"f7f7f7\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7438\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7438\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7402\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae746e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae746e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae7438\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1a96ae74a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae74a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae746e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:10:\"Contact Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"777777\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae7511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:20:\"LET’S GET IN TOUCH\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(520,29,'_fl_builder_enabled','1'),(521,112,'_fl_builder_data','a:22:{s:13:\"5ae1a96ae70c2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae70c2\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7143\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae70fb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae70fb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae70c2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1a96ae7132\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7132\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae70fb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":14:{s:7:\"address\";s:36:\"1 Infinite Loop, Cupertino, CA 95014\";s:6:\"height\";s:3:\"400\";s:10:\"margin_top\";s:2:\"40\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:3:\"map\";}}s:13:\"5ae1a96ae7143\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7143\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:4:\"full\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7179\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae71af\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71af\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7179\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae71e5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71e5\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:30;}}s:13:\"5ae1a96ae721b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae721b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"size\";s:2:\"70\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7251\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7251\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:15:\"CONTACT DETAILS\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae7287\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7287\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":13:{s:4:\"text\";s:441:\"<span style=\"color: #999999;\">Don’t hestiate to ask us something. Email us directly <span style=\"color: #808080;\"><strong>hi@loremipsum.com</strong></span> or call us at <span style=\"color: #808080;\"><strong>1-800-275-0002</strong></span>. Sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat. Donec a scelerisque turpis. Eu pro expetenda contentiones. Dolor maiestatis mea ut, oportere corrumpit eu duo.</span>\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae1a96ae72be\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae72be\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:12:\"mailto_email\";s:0:\"\";s:11:\"name_toggle\";s:4:\"show\";s:14:\"subject_toggle\";s:4:\"hide\";s:12:\"email_toggle\";s:4:\"show\";s:12:\"phone_toggle\";s:4:\"show\";s:14:\"success_action\";s:4:\"none\";s:15:\"success_message\";s:50:\"Thanks for your message! We’ll be in touch soon.\";s:11:\"success_url\";s:0:\"\";s:8:\"btn_text\";s:12:\"Send Message\";s:8:\"btn_icon\";s:11:\"fa fa-check\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:6:\"999999\";s:18:\"btn_bg_hover_color\";s:6:\"333333\";s:14:\"btn_text_color\";s:6:\"ffffff\";s:20:\"btn_text_hover_color\";s:6:\"FFFFFF\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:3:\"100\";s:21:\"btn_button_transition\";s:6:\"enable\";s:9:\"btn_width\";s:4:\"auto\";s:9:\"btn_align\";s:4:\"left\";s:13:\"btn_font_size\";s:2:\"15\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"3\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"50\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:12:\"contact-form\";s:18:\"success_url-search\";s:0:\"\";}}s:13:\"5ae1a96ae72f4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae72f4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":13:{s:4:\"text\";s:224:\"<span style=\"color: #999999;\">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Culpa repellendus adipisci laborum placeat delectus labore cupiditate deserunt minus numquam consequatur esse, hic at earum illo.</span>\";s:10:\"margin_top\";s:1:\"5\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae1a96ae732a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae732a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:23:\"AVAILABLE AT 9AM TO 6PM\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"afafaf\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:7:\"regular\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"13\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:6:\"custom\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae7360\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7360\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:5;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:2:\"25\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae7396\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7396\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:12:\"800-275-0002\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"00c2e5\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"32\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae73cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae73cc\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:6;s:8:\"settings\";O:8:\"stdClass\":21:{s:5:\"icons\";a:4:{i:0;O:8:\"stdClass\":9:{s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:1:\"0\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":8:{s:4:\"icon\";s:20:\"fa fa-twitter-square\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:2;O:8:\"stdClass\":8:{s:4:\"icon\";s:24:\"fa fa-google-plus-square\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:3;O:8:\"stdClass\":8:{s:4:\"icon\";s:21:\"fa fa-linkedin-square\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";s:2:\"60\";s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:4:\"left\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae1a96ae7402\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7402\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:6:\"f7f7f7\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7438\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7438\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7402\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae746e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae746e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae7438\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1a96ae74a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae74a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae746e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:10:\"Contact Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"777777\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae74da\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae74da\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":13:{s:4:\"text\";s:209:\"<strong><span style=\"color: #00c2e5;\">8181 Winchester Blvd.</span></strong>\n\n<strong><span style=\"color: #00c2e5;\">Cupertino, CA 95014,</span></strong>\n\n<strong><span style=\"color: #00c2e5;\">US</span></strong>\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae1a96ae7511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:20:\"LET’S GET IN TOUCH\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(522,112,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(523,29,'_edit_last','1'),(525,113,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(526,29,'_generate-sidebar-layout-meta','no-sidebar'),(527,29,'_generate-disable-headline','true'),(533,116,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(534,82,'_thumbnail_id','115'),(535,83,'_edit_lock','1524739606:1'),(536,83,'_edit_last','1'),(537,83,'_thumbnail_id','115'),(538,118,'_fl_builder_data','a:24:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"a442a16cba\";s:6:\"delete\";s:10:\"f4bd051928\";s:4:\"edit\";s:10:\"e58b99d58c\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/shop/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:30:\"http://remoterangler.com/shop/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00e9ed\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(539,118,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(540,119,'_fl_builder_data','a:59:{s:13:\"5ae192f75a9e3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75a9e3\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ab5b\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:7:\"heading\";s:18:\"Latest Discussions\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae192f75aa1d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75aa1d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ab5b\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":11:{s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:1:\"0\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:22:\"widget-recent-comments\";O:8:\"stdClass\":2:{s:5:\"title\";s:1:\" \";s:6:\"number\";s:1:\"2\";}s:6:\"widget\";s:25:\"WP_Widget_Recent_Comments\";s:4:\"type\";s:6:\"widget\";}}s:13:\"5ae192f75aa53\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75aa53\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b1fe\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"650\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:2:\"25\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";i:25;s:9:\"photo_src\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/facebook-logo.png\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:650;s:5:\"title\";s:13:\"facebook-logo\";s:8:\"filename\";s:17:\"facebook-logo.png\";s:3:\"url\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/facebook-logo.png\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=650\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:13:\"facebook-logo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1404942306000;s:8:\"modified\";d:1404942306000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:12:\"July 9, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"426caf1b02\";s:6:\"delete\";s:10:\"5ed1ca2023\";s:4:\"edit\";s:10:\"a8808c5897\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=650&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:35;s:5:\"width\";i:150;s:3:\"url\";s:93:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/facebook-logo-150x35.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/facebook-logo.png\";s:6:\"height\";i:35;s:5:\"width\";i:177;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:35;s:5:\"width\";i:177;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae192f75aa8a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75aa8a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b50d\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:11:\"Get Started\";s:4:\"icon\";s:0:\"\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:4:\"left\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:8:\"col_size\";i:50;s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:2:\"40\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:6:\"button\";}}s:13:\"5ae192f75aab8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75aab8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b284\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae192f75aaee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75aaee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b4a1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"title\";s:16:\"Nicolas Janssens\";s:4:\"text\";s:151:\"<p><span style=\"color: #999999;\">Fossae permisit terris animalibus. Convexi vis terrarum cepit. Nulli caligine nec effigiem capacius membra.</span></p>\";s:5:\"align\";s:6:\"center\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"559\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"none\";s:8:\"cta_text\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:8:\"col_size\";s:5:\"33.33\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"photo_src\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-2.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:559;s:5:\"title\";s:8:\"expert-2\";s:8:\"filename\";s:12:\"expert-2.jpg\";s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-2.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=559\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"expert-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1402612811000;s:8:\"modified\";d:1402612811000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"June 12, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"11ed769739\";s:6:\"delete\";s:10:\"6555d9da5a\";s:4:\"edit\";s:10:\"05cd7f949e\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=559&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-2-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-2.jpg\";s:6:\"height\";i:255;s:5:\"width\";i:204;s:11:\"orientation\";s:8:\"portrait\";}}s:6:\"height\";i:255;s:5:\"width\";i:204;s:11:\"orientation\";s:8:\"portrait\";}}}s:13:\"5ae192f75ab24\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ab24\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75aab8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75ab5b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ab5b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75aab8\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75ab91\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ab91\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b017\";s:8:\"position\";s:1:\"4\";s:8:\"settings\";N;}s:13:\"5ae192f75abc7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75abc7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ae9c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"title\";s:13:\"Octav Videanu\";s:4:\"text\";s:151:\"<p><span style=\"color: #999999;\">Fossae permisit terris animalibus. Convexi vis terrarum cepit. Nulli caligine nec effigiem capacius membra.</span></p>\";s:5:\"align\";s:6:\"center\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"558\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"none\";s:8:\"cta_text\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:8:\"col_size\";s:5:\"33.33\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"photo_src\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-3.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:558;s:5:\"title\";s:8:\"expert-3\";s:8:\"filename\";s:12:\"expert-3.jpg\";s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-3.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=558\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"expert-3\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1402612808000;s:8:\"modified\";d:1402612808000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"June 12, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"1555abbcca\";s:6:\"delete\";s:10:\"380e8a9e5b\";s:4:\"edit\";s:10:\"f53266fc53\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=558&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-3-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-3.jpg\";s:6:\"height\";i:255;s:5:\"width\";i:204;s:11:\"orientation\";s:8:\"portrait\";}}s:6:\"height\";i:255;s:5:\"width\";i:204;s:11:\"orientation\";s:8:\"portrait\";}}}s:13:\"5ae192f75abfd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75abfd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75ab91\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae192f75ac33\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ac33\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b017\";s:8:\"position\";s:1:\"5\";s:8:\"settings\";N;}s:13:\"5ae192f75ac69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ac69\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75ac9f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae192f75ac9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ac9f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b017\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5ae192f75acd5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75acd5\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75afab\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae192f75ad0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ad0b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ae86\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:228:\"<h3>Curabitur quis tincidunt diam.</h3><p>Donec et quam at elit tempus feugiat. Proin lorem ante, pulvinar sed tempor quis, semper nec erat. Etiam nec augue in elit vulputate sodales. Etiam ornare mollis sapien non lobortis.</p>\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:2:\"30\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:2:\"40\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae192f75ad41\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ad41\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b0ba\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:25;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75ad78\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ad78\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75aab8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75adae\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75adae\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ab5b\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":11:{s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:1:\"0\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:19:\"widget-recent-posts\";O:8:\"stdClass\":2:{s:5:\"title\";s:1:\" \";s:6:\"number\";s:1:\"4\";}s:6:\"widget\";s:22:\"WP_Widget_Recent_Posts\";s:4:\"type\";s:6:\"widget\";}}s:13:\"5ae192f75ade4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ade4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ab5b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:7:\"heading\";s:12:\"Recent Posts\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae192f75ae1a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ae1a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ab24\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:10:\"Contact Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";s:8:\"col_size\";i:25;}}s:13:\"5ae192f75ae50\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ae50\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ad78\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:16:\"Find us Socially\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"heading\";s:8:\"col_size\";i:25;}}s:13:\"5ae192f75ae86\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ae86\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b327\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae192f75ae9c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75ae9c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75ac33\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae192f75aed2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75aed2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75acd5\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":6:{s:4:\"text\";s:152:\"<p style=\"text-align: center;\"><span style=\"font-size: large;\">Consectetur adipiscing elit mauris rutrum neque placerat leo pharetra laoreet.</span></p>\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae192f75af08\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75af08\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b46b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae192f75af3f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75af3f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b192\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae192f75af75\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75af75\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ad41\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"652\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:2:\"35\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";i:25;s:9:\"photo_src\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/amazon-logo.png\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:652;s:5:\"title\";s:11:\"amazon-logo\";s:8:\"filename\";s:15:\"amazon-logo.png\";s:3:\"url\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/amazon-logo.png\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=652\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:11:\"amazon-logo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1404942312000;s:8:\"modified\";d:1404942312000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:12:\"July 9, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"591bf2d69f\";s:6:\"delete\";s:10:\"9d8ecb71c6\";s:4:\"edit\";s:10:\"04b042384e\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=652&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:43;s:5:\"width\";i:150;s:3:\"url\";s:91:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/amazon-logo-150x43.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/amazon-logo.png\";s:6:\"height\";i:43;s:5:\"width\";i:191;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:43;s:5:\"width\";i:191;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae192f75afab\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75afab\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b435\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae192f75afe1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75afe1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75af3f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"552\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:2:\"40\";s:12:\"margin_right\";s:1:\"0\";s:9:\"photo_src\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/art-macbook.jpg\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:552;s:5:\"title\";s:11:\"art-macbook\";s:8:\"filename\";s:15:\"art-macbook.jpg\";s:3:\"url\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/art-macbook.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=552\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:11:\"art-macbook\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1402610402000;s:8:\"modified\";d:1402610402000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"June 12, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"47215a698a\";s:6:\"delete\";s:10:\"2fa593d4a9\";s:4:\"edit\";s:10:\"9b1f48e2f9\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=552&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:92:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/art-macbook-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:225;s:5:\"width\";i:300;s:3:\"url\";s:92:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/art-macbook-300x225.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/art-macbook.jpg\";s:6:\"height\";i:562;s:5:\"width\";i:749;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:562;s:5:\"width\";i:749;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae192f75b017\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b017\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":32:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"20\";s:14:\"padding_bottom\";s:2:\"60\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:6:\"layout\";s:6:\"2-cols\";}}s:13:\"5ae192f75b04d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b04d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75acd5\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:35:\"An Elegant WordPress Theme Solution\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"ffffff\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"46\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:3:\"100\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae192f75b083\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b083\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ad78\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":10:{s:4:\"html\";s:383:\"<iframe src=\"//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FFastLine-Media%2F106732702687887&width=400&height=5508&colorscheme=dark&show_faces=true&header=false&stream=false&show_border=false&appId=525994720806655\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:250px; height:350px;\" allowTransparency=\"true\"></iframe>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:4:\"html\";}}s:13:\"5ae192f75b0ba\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b0ba\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b35d\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae192f75b0f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b0f0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b0ba\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:25;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75b126\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b126\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75ac33\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae192f75b15c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b15c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b126\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"title\";s:11:\"Levi Watson\";s:4:\"text\";s:151:\"<p><span style=\"color: #999999;\">Fossae permisit terris animalibus. Convexi vis terrarum cepit. Nulli caligine nec effigiem capacius membra.</span></p>\";s:5:\"align\";s:6:\"center\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"555\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"none\";s:8:\"cta_text\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:8:\"col_size\";s:5:\"33.33\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"photo_src\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-1.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:555;s:5:\"title\";s:8:\"expert-1\";s:8:\"filename\";s:12:\"expert-1.jpg\";s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-1.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=555\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:8:\"expert-1\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1402612546000;s:8:\"modified\";d:1402612546000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"June 12, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4f59724736\";s:6:\"delete\";s:10:\"58d90f1224\";s:4:\"edit\";s:10:\"fa74d353fd\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=555&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:89:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-1-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:81:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-1.jpg\";s:6:\"height\";i:255;s:5:\"width\";i:204;s:11:\"orientation\";s:8:\"portrait\";}}s:6:\"height\";i:255;s:5:\"width\";i:204;s:11:\"orientation\";s:8:\"portrait\";}}}s:13:\"5ae192f75b192\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b192\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b017\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";N;}s:13:\"5ae192f75b1c8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b1c8\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b327\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae192f75b1fe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b1fe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b0ba\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:25;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75b234\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b234\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b50d\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:228:\"<h3>Curabitur quis tincidunt diam.</h3><p>Donec et quam at elit tempus feugiat. Proin lorem ante, pulvinar sed tempor quis, semper nec erat. Etiam nec augue in elit vulputate sodales. Etiam ornare mollis sapien non lobortis.</p>\";s:8:\"col_size\";i:50;s:10:\"margin_top\";s:2:\"30\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:2:\"40\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae192f75b26a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b26a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75abfd\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:16:\"Meet the Experts\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:2:\"30\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae192f75b284\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b284\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:6:\"ffffff\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"2d2d2e\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"50\";s:14:\"padding_bottom\";s:2:\"50\";s:12:\"padding_left\";s:2:\"50\";s:13:\"padding_right\";s:2:\"50\";s:6:\"layout\";s:5:\"1-col\";}}s:13:\"5ae192f75b2bb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b2bb\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ac69\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"e3e3e3\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"40\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae192f75b2f1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b2f1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75abfd\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"e3e3e3\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";i:100;s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"40\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae192f75b327\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b327\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b017\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5ae192f75b35d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b35d\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"1b1b1c\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75b393\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b393\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ae86\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":19:{s:4:\"text\";s:11:\"Get Started\";s:4:\"icon\";s:0:\"\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:5:\"width\";s:4:\"auto\";s:5:\"align\";s:4:\"left\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:2:\"40\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:6:\"button\";}}s:13:\"5ae192f75b3c9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b3c9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75acd5\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:18:\"Let\'s get started!\";s:4:\"icon\";s:0:\"\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:16:\"text_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"19\";s:7:\"padding\";s:2:\"16\";s:13:\"border_radius\";s:1:\"3\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:2:\"30\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:6:\"button\";}}s:13:\"5ae192f75b3ff\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b3ff\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75af08\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:26:\"Design / Branding Examples\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:2:\"30\";s:13:\"margin_bottom\";s:2:\"40\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae192f75b435\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b435\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":33:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:6:\"d1d1d1\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:3:\"523\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:12:\"right bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"130\";s:14:\"padding_bottom\";s:3:\"170\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:6:\"layout\";s:5:\"1-col\";s:12:\"bg_image_src\";s:76:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/707.jpg\";}}s:13:\"5ae192f75b46b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b46b\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae192f75b017\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae192f75b4a1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b4a1\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75ac33\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae192f75b4d7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b4d7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b0ba\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:25;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae192f75b50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b50d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae192f75b192\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae192f75b543\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b543\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b0f0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"646\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:2:\"30\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";i:25;s:9:\"photo_src\";s:87:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/microsoft-logo.png\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:646;s:5:\"title\";s:14:\"microsoft-logo\";s:8:\"filename\";s:18:\"microsoft-logo.png\";s:3:\"url\";s:87:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/microsoft-logo.png\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=646\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:14:\"microsoft-logo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1404940351000;s:8:\"modified\";d:1404940351000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:12:\"July 9, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4724acc8a3\";s:6:\"delete\";s:10:\"bc1e60d898\";s:4:\"edit\";s:10:\"d0e63525b5\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=646&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:48;s:5:\"width\";i:150;s:3:\"url\";s:94:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/microsoft-logo-150x48.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/microsoft-logo.png\";s:6:\"height\";i:48;s:5:\"width\";i:225;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:48;s:5:\"width\";i:225;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae192f75b57a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b57a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b4d7\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"651\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:2:\"35\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";i:25;s:9:\"photo_src\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/oracle-logo.png\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:651;s:5:\"title\";s:11:\"oracle-logo\";s:8:\"filename\";s:15:\"oracle-logo.png\";s:3:\"url\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/oracle-logo.png\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=651\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:11:\"oracle-logo\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1404942309000;s:8:\"modified\";d:1404942309000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:12:\"July 9, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"e69ee06755\";s:6:\"delete\";s:10:\"ac944d1ea7\";s:4:\"edit\";s:10:\"f453e48b24\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=651&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":2:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:24;s:5:\"width\";i:150;s:3:\"url\";s:91:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/oracle-logo-150x24.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:84:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/oracle-logo.png\";s:6:\"height\";i:24;s:5:\"width\";i:187;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:24;s:5:\"width\";i:187;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae192f75b5b0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b5b0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75ab24\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":11:{s:12:\"mailto_email\";s:21:\"fake-email@google.com\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:2:\"90\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:12:\"contact-form\";s:8:\"col_size\";i:25;}}s:13:\"5ae192f75b5e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae192f75b5e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae192f75b1c8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"549\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:2:\"40\";s:12:\"margin_right\";s:1:\"0\";s:9:\"photo_src\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/lou-macbook1.jpg\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:549;s:5:\"title\";s:11:\"lou-macbook\";s:8:\"filename\";s:16:\"lou-macbook1.jpg\";s:3:\"url\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/lou-macbook1.jpg\";s:4:\"link\";s:52:\"https://demos.wpbeaverbuilder.com/?attachment_id=549\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"5\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:13:\"lou-macbook-2\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1402609210000;s:8:\"modified\";d:1402609210000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"June 12, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"6fc0fe1cd2\";s:6:\"delete\";s:10:\"c99f86bd25\";s:4:\"edit\";s:10:\"1d0bdfe61b\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=549&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:93:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/lou-macbook1-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:225;s:5:\"width\";i:300;s:3:\"url\";s:93:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/lou-macbook1-300x225.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/lou-macbook1.jpg\";s:6:\"height\";i:562;s:5:\"width\";i:749;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:562;s:5:\"width\";i:749;s:11:\"orientation\";s:9:\"landscape\";}}}}'),(541,119,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(542,120,'_fl_builder_data','a:24:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"a442a16cba\";s:6:\"delete\";s:10:\"f4bd051928\";s:4:\"edit\";s:10:\"e58b99d58c\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00e9ed\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(543,120,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(546,28,'_thumbnail_id','54'),(547,122,'_fl_builder_data','a:15:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:8:\"About Us\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:266:\"That\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of work from Honda. Just a couple of regular guys with high hopes and Big DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1469:\"It all started with the fact that I have way too many Remotes to keep track of. I kid you not, I have 8 remotes in my bedroom. It seems that the more technology that we get the more remotes we have to operate them. Let me list what my remotes go to: TV, Soundbar, Firestick, light switch, Airconditioner, an aroma diffuser and 2 fan remotes, one for me and one for my GF because she doesn\'t like it too cold. I use these remotes everyday and looking for each one became such a headache. They were either in the sheets, under the pillows, under the bed or under me sucked in by my gravitational pull as my gf puts it. I had to do something about all these remotes, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard, they\'re always nearby and plus always together. I know I can\'t be the only one with this problem, people have been losing their remotes since they were invented. I couldn\'t live without it, I wasn\'t constantly looking for the remotes, getting up and shaking the sheets to find them, they were always there and always together. That\'s when I knew other people need this product. So I created the Remote Rangler and my coworker friend Troy was one of my first customers. He loved it so much that he offered to help me launch it, and we became partners. Now we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}}'),(548,122,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(549,54,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:3837;s:6:\"height\";i:1099;s:4:\"file\";s:19:\"20180308_201116.jpg\";}}'),(550,123,'_edit_last','1'),(551,123,'_publicize_pending','1'),(552,123,'_edit_lock','1529437045:1'),(553,123,'_fl_builder_draft','a:0:{}'),(554,123,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(569,136,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(555,125,'_wp_attached_file','2018/04/Remote-Rangler-pitch-deck-collab.pdf'),(572,138,'_wp_attached_file','2018/04/20180417_124010.jpg'),(573,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1314;s:6:\"height\";i:1187;s:4:\"file\";s:27:\"2018/04/20180417_124010.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180417_124010-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180417_124010-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180417_124010-300x271.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20180417_124010-768x694.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:694;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180417_124010-1024x925.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:925;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20180417_124010-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180417_124010-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"20180417_124010-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20180417_124010-600x542.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180417_124010-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(574,139,'_wp_attached_file','2018/04/Bar-Remotes.png'),(575,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3280;s:6:\"height\";i:3400;s:4:\"file\";s:23:\"2018/04/Bar-Remotes.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Bar-Remotes-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Bar-Remotes-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Bar-Remotes-289x300.png\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"Bar-Remotes-768x796.png\";s:5:\"width\";i:768;s:6:\"height\";i:796;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Bar-Remotes-988x1024.png\";s:5:\"width\";i:988;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"Bar-Remotes-600x622.png\";s:5:\"width\";i:600;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Bar-Remotes-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"Bar-Remotes-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"Bar-Remotes-600x622.png\";s:5:\"width\";i:600;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Bar-Remotes-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(576,140,'_fl_builder_data','a:38:{s:13:\"5ae28d316a5a2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a5a2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316aabf\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":17:{s:4:\"icon\";s:18:\"fa fa-chevron-down\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:4:\"text\";s:0:\"\";s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";s:2:\"30\";s:5:\"align\";s:6:\"center\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:4:\"icon\";}}s:13:\"5ae28d316a5dc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a5dc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316a78f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";s:2:\"60\";s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:2:\"20\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316a614\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a614\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316a5dc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:34:\"Everything you need, in one place.\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h2\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"56\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:2:\"60\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae28d316a64a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a64a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316a759\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"807\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";i:40;s:9:\"photo_src\";s:77:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/desk.jpg\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":26:{s:2:\"id\";i:807;s:5:\"title\";s:4:\"desk\";s:8:\"filename\";s:8:\"desk.jpg\";s:3:\"url\";s:77:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/desk.jpg\";s:4:\"link\";s:48:\"https://demos.wpbeaverbuilder.com/scroller/desk/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:4:\"desk\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:494;s:4:\"date\";d:1406610409000;s:8:\"modified\";d:1406610409000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 29, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"8d3534b0f7\";s:6:\"delete\";s:10:\"c6c84dfc61\";s:4:\"edit\";s:10:\"b3b00810b6\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=807&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/desk-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/desk-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:77:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/desk.jpg\";s:6:\"height\";i:667;s:5:\"width\";i:1000;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:667;s:5:\"width\";i:1000;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae28d316a680\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a680\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316aa1d\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae28d316a6b7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a6b7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316a723\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:31:\"The best place to work, period.\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h2\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"56\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:2:\"60\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae28d316a6ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a6ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316a5dc\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":11:{s:4:\"text\";s:194:\"<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p><p><a href=\"#\">Read More</a></p>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:2:\"50\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae28d316a723\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a723\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316a680\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";s:2:\"60\";s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:2:\"20\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316a759\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a759\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316a680\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:40;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316a78f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a78f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316aa89\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae28d316a7c5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a7c5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:4:\"full\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:8:\"parallax\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:3:\"135\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:15:\"xlarge_triangle\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"200\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"300\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:73:\"http://remoterangler.com/wp-content/uploads/2018/04/All-the-remotes-3.png\";}}s:13:\"5ae28d316a7fb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a7fb\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316a8d3\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae28d316a89d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a89d\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:8:\"parallax\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:3:\"139\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"250\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"250\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:67:\"http://remoterangler.com/wp-content/uploads/2018/04/Bar-Remotes.png\";}}s:13:\"5ae28d316a8d3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a8d3\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"4\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:8:\"parallax\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:3:\"509\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"250\";s:14:\"padding_bottom\";s:3:\"250\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:78:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/alley.jpg\";}}s:13:\"5ae28d316a90f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a90f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316a7fb\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae28d316a945\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a945\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316a723\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":11:{s:4:\"text\";s:194:\"<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p><p><a href=\"#\">Read More</a></p>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:2:\"60\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae28d316a97b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a97b\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316a7c5\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae28d316a9b1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a9b1\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316aa53\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae28d316a9e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316a9e7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316a78f\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:40;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316aa1d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316aa1d\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"100\";s:14:\"padding_bottom\";s:3:\"100\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316aa53\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316aa53\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316a89d\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae28d316aa89\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316aa89\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"100\";s:14:\"padding_bottom\";s:3:\"100\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316aabf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316aabf\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316a97b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae28d316aaf5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316aaf5\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316ab2b\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:50;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316ab2b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ab2b\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316ac39\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5ae28d316ab61\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ab61\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316ab2b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";i:50;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316ab97\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ab97\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316abcd\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":13:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae28d316abcd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316abcd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316adcf\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae28d316ac03\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ac03\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316ac70\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":22:{s:7:\"heading\";s:31:\"We would love to hear from you.\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"56\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:6:\"custom\";s:18:\"r_custom_font_size\";s:2:\"36\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";i:100;s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae28d316ac39\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ac39\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"5\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:3:\"100\";s:14:\"padding_bottom\";s:3:\"100\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae28d316ac70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ac70\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae28d316aca6\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae28d316aca6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316aca6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316ac39\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae28d316acdc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316acdc\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316aaf5\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":11:{s:12:\"mailto_email\";s:24:\"themes@fastlinemedia.com\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:12:\"contact-form\";s:8:\"col_size\";i:50;}}s:13:\"5ae28d316acf7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316acf7\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316ab61\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":12:{s:7:\"address\";s:39:\"1865 Winchester Blvd. Campbell CA 95008\";s:6:\"height\";s:3:\"340\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:3:\"map\";s:8:\"col_size\";i:50;}}s:13:\"5ae28d316ad2c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ad2c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316ac70\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":11:{s:4:\"text\";s:145:\"<p style=\"text-align: center;\"><span style=\"font-size: 14pt;\">408.999.9999 • </span><span style=\"font-size: 14pt;\">info@yourbiz.com</span></p>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";i:100;}}s:13:\"5ae28d316ad63\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ad63\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316abcd\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":19:{s:5:\"icons\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"icon\";s:14:\"fa fa-facebook\";s:4:\"link\";s:61:\"https://www.facebook.com/pages/FastLine-Media/106732702687887\";}i:1;O:8:\"stdClass\":2:{s:4:\"icon\";s:13:\"fa fa-twitter\";s:4:\"link\";s:33:\"https://twitter.com/fastlinemedia\";}i:2;O:8:\"stdClass\":2:{s:4:\"icon\";s:17:\"fa fa-google-plus\";s:4:\"link\";s:45:\"https://plus.google.com/115002760022100564436\";}}s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";s:2:\"46\";s:7:\"spacing\";s:2:\"30\";s:5:\"align\";s:6:\"center\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:10:\"icon-group\";s:8:\"col_size\";i:100;}}s:13:\"5ae28d316ad99\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316ad99\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae28d316a9e7\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"137\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"40\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203916.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:137;s:5:\"title\";s:15:\"20180308_203916\";s:8:\"filename\";s:19:\"20180308_203916.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203916.jpg\";s:4:\"link\";s:57:\"http://remoterangler.com/howitworks/20180308_203916/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203916\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:2;s:4:\"date\";i:1524798216000;s:8:\"modified\";i:1524798216000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 27, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"a63190724c\";s:6:\"delete\";s:10:\"ec5bc8fcfe\";s:4:\"edit\";s:10:\"a99867b992\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=137&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:61:\"http://remoterangler.com/wp-admin/post.php?post=2&action=edit\";s:15:\"uploadedToTitle\";s:12:\"How It Works\";s:15:\"filesizeInBytes\";i:1968188;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2362;s:5:\"width\";i:2245;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203916-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:285;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203916-285x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:973;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203916-973x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203916.jpg\";s:6:\"height\";i:2362;s:5:\"width\";i:2245;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae28d316adcf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae28d316adcf\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae28d316ac39\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}}'),(577,140,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(994,205,'_fl_builder_draft','a:15:{s:13:\"5afa14093da7e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093da7e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14093dd85\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5afa14093dabc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dabc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14093dd85\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14093daf5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093daf5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14093dd85\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14093db2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093db2f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14093da7e\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14093db6a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093db6a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14093db2f\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5afa14093dba5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dba5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14093db2f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5afa14093dbdf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dbdf\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14093dabc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14093dc18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dc18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14093dabc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14093dc52\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dc52\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14093dbdf\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14093dc8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dc8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14093dc18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14093dcc4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dcc4\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14093daf5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14093dcfd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dcfd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14093daf5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14093dd36\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dd36\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14093dcc4\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14093dd4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dd4c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14093dcfd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14093dd85\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dd85\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:6:\"layout\";s:5:\"1-col\";}}}'),(579,141,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(580,142,'_fl_builder_data','a:34:{s:13:\"5ae294b4200fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4200fc\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b4201c6\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"title\";s:10:\"Innovation\";s:4:\"text\";s:93:\"<p>Traxit locavit piscibus retinebat pro dextra pendebat aliud tollere flexi est diverso.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"19\";s:10:\"image_type\";s:4:\"icon\";s:5:\"photo\";s:0:\"\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:17:\"fa fa-lightbulb-o\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"none\";s:8:\"cta_text\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"callout\";}}s:13:\"5ae294b420122\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420122\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4203e2\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:25;}}s:13:\"5ae294b420159\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420159\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4203e2\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:25;}}s:13:\"5ae294b42018f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42018f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420159\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":42:{s:5:\"title\";s:12:\"Get In Touch\";s:4:\"text\";s:123:\"<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h2\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"20\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"819\";s:10:\"photo_crop\";s:9:\"landscape\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:99:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_6779-1300x866-1024x682.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:819;s:5:\"title\";s:17:\"IMG_6779-1300x866\";s:8:\"filename\";s:21:\"IMG_6779-1300x866.jpg\";s:3:\"url\";s:90:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_6779-1300x866.jpg\";s:4:\"link\";s:63:\"https://demos.wpbeaverbuilder.com/homepage-2/img_6779-1300x866/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"img_6779-1300x866\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:82;s:4:\"date\";d:1406694738000;s:8:\"modified\";d:1406694738000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 30, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"a707bfdab3\";s:6:\"delete\";s:10:\"f4eedb1877\";s:4:\"edit\";s:10:\"16044e61d0\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=819&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:98:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_6779-1300x866-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:199;s:5:\"width\";i:300;s:3:\"url\";s:98:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_6779-1300x866-300x199.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:682;s:5:\"width\";i:1024;s:3:\"url\";s:99:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_6779-1300x866-1024x682.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:90:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_6779-1300x866.jpg\";s:6:\"height\";i:866;s:5:\"width\";i:1300;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:866;s:5:\"width\";i:1300;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae294b4201c6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4201c6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4201fc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae294b4201fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4201fc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b4203ac\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae294b420268\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420268\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b420725\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae294b42029e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42029e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b4204bb\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":41:{s:5:\"title\";s:9:\"Expertise\";s:4:\"text\";s:93:\"<p>Traxit locavit piscibus retinebat pro dextra pendebat aliud tollere flexi est diverso.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"19\";s:10:\"image_type\";s:4:\"icon\";s:5:\"photo\";s:0:\"\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:11:\"fa fa-users\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"none\";s:8:\"cta_text\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"callout\";s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae294b4202d4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4202d4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420122\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":42:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:123:\"<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h2\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"20\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"818\";s:10:\"photo_crop\";s:9:\"landscape\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/9814538046_86523fdb81_o-1300x870.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:818;s:5:\"title\";s:32:\"9814538046_86523fdb81_o-1300x870\";s:8:\"filename\";s:36:\"9814538046_86523fdb81_o-1300x870.jpg\";s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/9814538046_86523fdb81_o-1300x870.jpg\";s:4:\"link\";s:78:\"https://demos.wpbeaverbuilder.com/homepage-2/9814538046_86523fdb81_o-1300x870/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:32:\"9814538046_86523fdb81_o-1300x870\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:82;s:4:\"date\";d:1406694676000;s:8:\"modified\";d:1406694676000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 30, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"10e20e6842\";s:6:\"delete\";s:10:\"aaafc06dfb\";s:4:\"edit\";s:10:\"81ceb1e04f\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=818&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:113:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/9814538046_86523fdb81_o-1300x870-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:200;s:5:\"width\";i:300;s:3:\"url\";s:113:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/9814538046_86523fdb81_o-1300x870-300x200.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:685;s:5:\"width\";i:1024;s:3:\"url\";s:114:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/9814538046_86523fdb81_o-1300x870-1024x685.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/9814538046_86523fdb81_o-1300x870.jpg\";s:6:\"height\";i:870;s:5:\"width\";i:1300;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:870;s:5:\"width\";i:1300;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae294b42030a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42030a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:6:\"4-cols\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae294b420340\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420340\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4203e2\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:25;}}s:13:\"5ae294b420376\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420376\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420268\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae294b4203ac\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4203ac\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":40:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:5:\"solid\";s:12:\"border_color\";s:6:\"e8e8e8\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"0\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:6:\"layout\";s:6:\"4-cols\";}}s:13:\"5ae294b4203e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4203e2\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42030a\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae294b420418\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420418\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4203e2\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:25;}}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae294b4204bb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4204bb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4201fc\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae294b4204f1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4204f1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b4206ef\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":41:{s:5:\"title\";s:10:\"Excellence\";s:4:\"text\";s:93:\"<p>Traxit locavit piscibus retinebat pro dextra pendebat aliud tollere flexi est diverso.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"19\";s:10:\"image_type\";s:4:\"icon\";s:5:\"photo\";s:0:\"\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:12:\"fa fa-star-o\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"none\";s:8:\"cta_text\";s:0:\"\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:7:\"callout\";s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae294b420508\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420508\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420418\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":42:{s:5:\"title\";s:12:\"Our Services\";s:4:\"text\";s:123:\"<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h2\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"20\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:3:\"817\";s:10:\"photo_crop\";s:9:\"landscape\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:99:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_4340-1300x866-1024x682.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:817;s:5:\"title\";s:17:\"IMG_4340-1300x866\";s:8:\"filename\";s:21:\"IMG_4340-1300x866.jpg\";s:3:\"url\";s:90:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_4340-1300x866.jpg\";s:4:\"link\";s:63:\"https://demos.wpbeaverbuilder.com/homepage-2/img_4340-1300x866/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"2\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:17:\"img_4340-1300x866\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:82;s:4:\"date\";d:1406694644000;s:8:\"modified\";d:1406694644000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:13:\"July 30, 2014\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"68505ac145\";s:6:\"delete\";s:10:\"c5164a55a2\";s:4:\"edit\";s:10:\"fd85a7738e\";}s:8:\"editLink\";s:72:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=817&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:98:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_4340-1300x866-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:199;s:5:\"width\";i:300;s:3:\"url\";s:98:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_4340-1300x866-300x199.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:682;s:5:\"width\";i:1024;s:3:\"url\";s:99:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_4340-1300x866-1024x682.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:90:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/IMG_4340-1300x866.jpg\";s:6:\"height\";i:866;s:5:\"width\";i:1300;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:866;s:5:\"width\";i:1300;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae294b42053f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42053f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":20:{s:6:\"height\";s:3:\"400\";s:9:\"auto_play\";s:1:\"1\";s:10:\"play_pause\";s:1:\"0\";s:5:\"delay\";s:1:\"9\";s:10:\"transition\";s:10:\"horizontal\";s:5:\"speed\";s:3:\"0.5\";s:6:\"arrows\";s:1:\"0\";s:4:\"dots\";s:1:\"1\";s:9:\"max_width\";s:4:\"1100\";s:6:\"slides\";a:2:{i:0;O:8:\"stdClass\":41:{s:5:\"label\";s:7:\"Slide 1\";s:9:\"bg_layout\";s:5:\"photo\";s:12:\"bg_photo_src\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/hero-image-4.jpg\";s:8:\"bg_photo\";s:3:\"814\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_video\";s:0:\"\";s:14:\"content_layout\";s:4:\"text\";s:8:\"fg_photo\";s:0:\"\";s:8:\"fg_video\";s:0:\"\";s:5:\"title\";s:29:\"A Team That Helps You Succeed\";s:4:\"text\";s:218:\"<p>Mundum tum duae rerum. Terra cornua. Ignea primaque nitidis dissaepserat mutatas derecti. Sunt circumfluus extendi aethere. Illic chaos: habentem zonae sorbentur meis peregrinum. Lucis formaeque ita chaos: erat.</p>\";s:9:\"title_tag\";s:2:\"h2\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:13:\"text_position\";s:4:\"left\";s:10:\"text_width\";s:2:\"30\";s:15:\"text_margin_top\";s:1:\"0\";s:18:\"text_margin_bottom\";s:1:\"0\";s:16:\"text_margin_left\";s:1:\"0\";s:17:\"text_margin_right\";s:1:\"0\";s:10:\"text_color\";s:6:\"ffffff\";s:11:\"text_shadow\";s:1:\"0\";s:13:\"text_bg_color\";s:6:\"292929\";s:15:\"text_bg_opacity\";s:2:\"70\";s:14:\"text_bg_height\";s:4:\"100%\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:6:\"button\";s:8:\"cta_text\";s:11:\"Get Started\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:13:\"btn_font_size\";s:2:\"16\";s:11:\"btn_padding\";s:2:\"14\";s:17:\"btn_border_radius\";s:1:\"6\";s:12:\"r_photo_type\";s:4:\"main\";s:7:\"r_photo\";s:0:\"\";s:12:\"r_text_color\";s:6:\"ffffff\";s:15:\"r_text_bg_color\";s:6:\"333333\";}i:1;O:8:\"stdClass\":41:{s:5:\"label\";s:7:\"Slide 2\";s:9:\"bg_layout\";s:5:\"photo\";s:12:\"bg_photo_src\";s:85:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/03/hero-image-3.png\";s:8:\"bg_photo\";s:3:\"362\";s:8:\"bg_color\";s:0:\"\";s:8:\"bg_video\";s:0:\"\";s:14:\"content_layout\";s:4:\"text\";s:8:\"fg_photo\";s:0:\"\";s:8:\"fg_video\";s:0:\"\";s:5:\"title\";s:32:\"Totidem lumina adsiduis concordi\";s:4:\"text\";s:218:\"<p>Mundum tum duae rerum. Terra cornua. Ignea primaque nitidis dissaepserat mutatas derecti. Sunt circumfluus extendi aethere. Illic chaos: habentem zonae sorbentur meis peregrinum. Lucis formaeque ita chaos: erat.</p>\";s:9:\"title_tag\";s:2:\"h2\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:13:\"text_position\";s:4:\"left\";s:10:\"text_width\";s:2:\"30\";s:15:\"text_margin_top\";s:1:\"0\";s:18:\"text_margin_bottom\";s:2:\"60\";s:16:\"text_margin_left\";s:1:\"0\";s:17:\"text_margin_right\";s:1:\"0\";s:10:\"text_color\";s:6:\"ffffff\";s:11:\"text_shadow\";s:1:\"0\";s:13:\"text_bg_color\";s:6:\"292929\";s:15:\"text_bg_opacity\";s:2:\"70\";s:14:\"text_bg_height\";s:4:\"100%\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:6:\"button\";s:8:\"cta_text\";s:11:\"Get Started\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:13:\"btn_font_size\";s:2:\"16\";s:11:\"btn_padding\";s:2:\"14\";s:17:\"btn_border_radius\";s:1:\"6\";s:12:\"r_photo_type\";s:4:\"main\";s:7:\"r_photo\";s:0:\"\";s:12:\"r_text_color\";s:6:\"ffffff\";s:15:\"r_text_bg_color\";s:6:\"333333\";}}s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:2:\"-5\";s:11:\"margin_left\";s:1:\"0\";s:12:\"margin_right\";s:1:\"0\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:8:\"col_size\";s:3:\"100\";s:4:\"type\";s:14:\"content-slider\";}}s:13:\"5ae294b420575\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420575\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"4\";s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae294b4205ab\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4205ab\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b42064d\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":19:{s:5:\"icons\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"icon\";s:14:\"fa fa-facebook\";s:4:\"link\";s:61:\"https://www.facebook.com/pages/FastLine-Media/106732702687887\";}i:1;O:8:\"stdClass\":2:{s:4:\"icon\";s:13:\"fa fa-twitter\";s:4:\"link\";s:33:\"https://twitter.com/fastlinemedia\";}i:2;O:8:\"stdClass\":2:{s:4:\"icon\";s:17:\"fa fa-google-plus\";s:4:\"link\";s:51:\"https://plus.google.com/115002760022100564436/posts\";}}s:5:\"color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";s:2:\"30\";s:7:\"spacing\";s:2:\"20\";s:5:\"align\";s:4:\"left\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:10:\"icon-group\";s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae294b4205e1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4205e1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b42064d\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":11:{s:4:\"text\";s:132:\"<h3>Get In Touch</h3><p>We would love to hear from you!</p><p>p 408.999.9999<br />f 408.888.8888<br />e themes@fastlinemedia.com</p>\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae294b420617\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420617\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420683\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:66.659999999999996589394868351519107818603515625;}}s:13:\"5ae294b42064d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42064d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420683\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5ae294b420683\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420683\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b420575\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae294b4206b9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4206b9\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420617\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":11:{s:7:\"address\";s:44:\"1865 Winchester Blvd #202 Campbell, CA 95008\";s:6:\"height\";s:3:\"400\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:3:\"map\";}}s:13:\"5ae294b4206ef\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b4206ef\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b4201fc\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae294b420725\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420725\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:6:\"000000\";s:10:\"bg_opacity\";s:1:\"5\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:2:\"20\";s:12:\"padding_left\";s:2:\"40\";s:13:\"padding_right\";s:2:\"40\";}}s:13:\"5ae294b42075b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42075b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420376\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":31:{s:5:\"title\";s:54:\"Are you ready to find out how we can help you succeed?\";s:4:\"text\";s:73:\"<p>Ab iapeto secant grandia pendebat speciem orbem. Terris di induit.</p>\";s:6:\"layout\";s:6:\"inline\";s:9:\"alignment\";s:6:\"center\";s:7:\"spacing\";s:1:\"0\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";s:2:\"24\";s:10:\"text_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"btn_text\";s:18:\"Get Started Today!\";s:8:\"btn_link\";s:1:\"#\";s:15:\"btn_link_target\";s:5:\"_self\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:13:\"btn_font_size\";s:2:\"16\";s:11:\"btn_padding\";s:2:\"14\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:4:\"type\";s:3:\"cta\";}}s:13:\"5ae294b420791\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420791\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420340\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":42:{s:5:\"title\";s:9:\"Our Staff\";s:4:\"text\";s:123:\"<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h2\";s:10:\"title_size\";s:6:\"custom\";s:17:\"title_custom_size\";s:2:\"20\";s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"20\";s:10:\"photo_crop\";s:9:\"landscape\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:1:\"#\";s:11:\"link_target\";s:5:\"_self\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:9:\"photo_src\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:4:\"type\";s:7:\"callout\";s:10:\"photo_data\";O:8:\"stdClass\":26:{s:2:\"id\";i:20;s:5:\"title\";s:24:\"iStock_000020420411Small\";s:8:\"filename\";s:28:\"iStock_000020420411Small.jpg\";s:3:\"url\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:4:\"link\";s:51:\"https://demos.wpbeaverbuilder.com/?attachment_id=20\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:74:\"A group of successful and satisfied businesspeople looking upwards smiling\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:24:\"istock_000020420411small\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";d:1388106995000;s:8:\"modified\";d:1388106995000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:70:\"https://demos.wpbeaverbuilder.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:17:\"December 27, 2013\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"50603a81a0\";s:6:\"delete\";s:10:\"c387631e56\";s:4:\"edit\";s:10:\"466f6be0f2\";}s:8:\"editLink\";s:71:\"https://demos.wpbeaverbuilder.com/wp-admin/post.php?post=20&action=edit\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:199;s:5:\"width\";i:300;s:3:\"url\";s:105:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small-300x199.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:97:\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\";s:6:\"height\";i:565;s:5:\"width\";i:849;s:11:\"orientation\";s:9:\"landscape\";}}s:6:\"height\";i:565;s:5:\"width\";i:849;s:11:\"orientation\";s:9:\"landscape\";}}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/pD2o8nm7_io?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}}'),(581,142,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(583,143,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(584,144,'_fl_builder_data','a:26:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/pD2o8nm7_io?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"62\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:62;s:5:\"title\";s:15:\"20180308_202833\";s:8:\"filename\";s:19:\"20180308_202833.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180308_202833/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_202833\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726677000;s:8:\"modified\";i:1524726677000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"93b5e1c2d3\";s:6:\"delete\";s:10:\"e24417f94a\";s:4:\"edit\";s:10:\"50a5faa22b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=62&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:1831781;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2710;s:5:\"width\";i:1416;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:157;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-157x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:535;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-535x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:6:\"height\";i:2710;s:5:\"width\";i:1416;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d028d2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d028d2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d028d2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:2:\"tt\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}}'),(585,144,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(586,2,'_generate-footer-widget-meta','0'),(993,205,'_fl_builder_data','a:15:{s:13:\"5afa14093da7e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093da7e\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14093dd85\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5afa14093dabc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dabc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14093dd85\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14093daf5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093daf5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14093dd85\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14093db2f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093db2f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14093da7e\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14093db6a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093db6a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14093db2f\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5afa14093dba5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dba5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14093db2f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5afa14093dbdf\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dbdf\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14093dabc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14093dc18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dc18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14093dabc\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14093dc52\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dc52\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14093dbdf\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14093dc8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dc8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14093dc18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14093dcc4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dcc4\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14093daf5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14093dcfd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dcfd\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14093daf5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14093dd36\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dd36\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14093dcc4\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14093dd4c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dd4c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14093dcfd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14093dd85\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14093dd85\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:6:\"layout\";s:5:\"1-col\";}}}'),(587,145,'_fl_builder_data','a:30:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/pD2o8nm7_io?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"62\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:62;s:5:\"title\";s:15:\"20180308_202833\";s:8:\"filename\";s:19:\"20180308_202833.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180308_202833/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_202833\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726677000;s:8:\"modified\";i:1524726677000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"93b5e1c2d3\";s:6:\"delete\";s:10:\"e24417f94a\";s:4:\"edit\";s:10:\"50a5faa22b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=62&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:1831781;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2710;s:5:\"width\";i:1416;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:157;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-157x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:535;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-535x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:6:\"height\";i:2710;s:5:\"width\";i:1416;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d028d2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d028d2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d028d2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:2:\"tt\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29e0ea9cb8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9cb8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29e0ea9e18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9e18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29e0ea9cb8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29e0ea9bf4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9bf4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae29e5a020ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e5a020ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0075a0\";s:14:\"bg_hover_color\";s:6:\"00e0b3\";s:10:\"text_color\";s:6:\"050001\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}}'),(588,145,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(589,146,'_fl_builder_data','a:30:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/pD2o8nm7_io?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"62\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:62;s:5:\"title\";s:15:\"20180308_202833\";s:8:\"filename\";s:19:\"20180308_202833.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180308_202833/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_202833\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726677000;s:8:\"modified\";i:1524726677000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"93b5e1c2d3\";s:6:\"delete\";s:10:\"e24417f94a\";s:4:\"edit\";s:10:\"50a5faa22b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=62&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:1831781;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2710;s:5:\"width\";i:1416;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:157;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-157x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:535;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-535x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:6:\"height\";i:2710;s:5:\"width\";i:1416;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2d17082ffe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29e0ea9cb8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9cb8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29e0ea9e18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9e18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29e0ea9cb8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29e0ea9bf4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9bf4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae29e5a020ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e5a020ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0075a0\";s:14:\"bg_hover_color\";s:6:\"00e0b3\";s:10:\"text_color\";s:6:\"050001\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2d17082ffe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2d17082ffe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}}'),(590,146,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(591,147,'_fl_builder_data','a:30:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/pD2o8nm7_io?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"62\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:62;s:5:\"title\";s:15:\"20180308_202833\";s:8:\"filename\";s:19:\"20180308_202833.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180308_202833/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_202833\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726677000;s:8:\"modified\";i:1524726677000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"93b5e1c2d3\";s:6:\"delete\";s:10:\"e24417f94a\";s:4:\"edit\";s:10:\"50a5faa22b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=62&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:1831781;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2710;s:5:\"width\";i:1416;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:157;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-157x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:535;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-535x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:6:\"height\";i:2710;s:5:\"width\";i:1416;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2d17082ffe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29e0ea9cb8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9cb8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29e0ea9e18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9e18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29e0ea9cb8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29e0ea9bf4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9bf4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae29e5a020ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e5a020ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0075a0\";s:14:\"bg_hover_color\";s:6:\"00e0b3\";s:10:\"text_color\";s:6:\"050001\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2d17082ffe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2d17082ffe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}}'),(592,147,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(593,2,'_generate-disable-headline','true'),(594,148,'_fl_builder_data','a:24:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(595,148,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1154,224,'_wp_attached_file','2018/06/DO-IT.wma'),(1153,223,'_wp_attachment_metadata','a:19:{s:5:\"codec\";s:23:\"Windows Media Audio 9.2\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:44100;s:7:\"bitrate\";i:96582;s:15:\"bits_per_sample\";i:16;s:10:\"dataformat\";s:3:\"wma\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:7:\"encoder\";s:23:\"Windows Media Audio 9.2\";s:15:\"encoder_options\";s:34:\"96 kbps, 44 kHz, stereo 1-pass CBR\";s:11:\"channelmode\";s:6:\"stereo\";s:17:\"compression_ratio\";d:0.0684396258503401355710593634285032749176025390625;s:10:\"fileformat\";s:3:\"asf\";s:8:\"filesize\";i:2402787;s:9:\"mime_type\";s:14:\"audio/x-ms-wma\";s:6:\"length\";i:197;s:16:\"length_formatted\";s:4:\"3:17\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(601,151,'_wc_review_count','0'),(602,151,'_wc_rating_count','a:0:{}'),(603,151,'_wc_average_rating','0'),(604,151,'_edit_last','1'),(605,151,'_edit_lock','1544476905:1'),(636,151,'_wpas_done_all','1'),(607,151,'_sku',''),(608,151,'_regular_price','20.99'),(609,151,'_sale_price',''),(610,151,'_sale_price_dates_from',''),(611,151,'_sale_price_dates_to',''),(612,151,'total_sales','7'),(613,151,'_tax_status','taxable'),(614,151,'_tax_class',''),(615,151,'_manage_stock','no'),(616,151,'_backorders','no'),(617,151,'_sold_individually','no'),(618,151,'_weight','4'),(619,151,'_length',''),(620,151,'_width',''),(621,151,'_height',''),(622,151,'_upsell_ids','a:0:{}'),(623,151,'_crosssell_ids','a:0:{}'),(624,151,'_purchase_note',''),(625,151,'_default_attributes','a:0:{}'),(626,151,'_virtual','no'),(627,151,'_downloadable','no'),(628,151,'_product_image_gallery','180,173'),(629,151,'_download_limit','-1'),(630,151,'_download_expiry','-1'),(631,151,'_stock',NULL),(632,151,'_stock_status','instock'),(633,151,'_product_version','3.4.5'),(634,151,'_price','20.99'),(635,151,'_generate-sidebar-layout-meta','no-sidebar'),(637,151,'_thumbnail_id','64'),(639,153,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(640,154,'_fl_builder_data','a:15:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:8:\"About Us\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:269:\"That\'s us on the first day we received our initial shipment of Remote Ranglers and started assembling them. I\'m Joe the one on the left and my partner Troy, is on the right. He just got out of work at Honda. Just a couple of regular guys with high hopes and BIG DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1418:\"It all started with the fact that I have way too many remotes to keep track of. I kid you not, I have 8 remotes in just my bedroom! It seems that the more technology we get, the more remotes we have to operate them. Here\'s a list of my many remotes: TV, Soundbar, Firestick, light switch, air-conditioner, aroma diffuser and 2 fan remotes, one for me and one for my girl, because she doesn\'t like it too cold. I use these remotes everyday and keeping track of each one became such a major headache. They were either in the sheets, under the pillows, under the bed or under me, sucked in by my gravitational pull (as my girlfriend puts it.) I had to do something, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard. They are always nearby and ALWAYS together. I know I\'m not the only one with this problem, people have been losing remotes since they were invented. I realized I couldn\'t live without it. That\'s when I knew other people needed this product too. So, out of necessity I created the Remote Rangler! My buddy &amp; coworker Troy was one of my first customers. He loved it so much, that he offered to help me launch it, as his previous job experience related to our business well, and we became partners. Now, we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}}'),(641,154,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(642,155,'_wp_attached_file','2018/04/facebook-share.jpg'),(643,155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:367;s:6:\"height\";i:140;s:4:\"file\";s:26:\"2018/04/facebook-share.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"facebook-share-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"facebook-share-300x114.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"facebook-share-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"facebook-share-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:26:\"facebook-share-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"facebook-share-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:4:\"Test\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524792355\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(644,156,'_fl_builder_data','a:29:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dcd78f2c9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dcd78f2c9\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae2dcd799f21\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dcd799f21\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2dcd78f2c9\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2dcd79a0bb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dcd79a0bb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2dcd799f21\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae2dd9d75822\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd9d75822\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2dcd79a0bb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:12:\"social_icons\";a:1:{i:0;O:8:\"stdClass\":14:{s:1:\"0\";s:0:\"\";s:17:\"social_share_type\";s:8:\"facebook\";s:10:\"image_type\";s:5:\"photo\";s:4:\"icon\";s:36:\"ua-icon ua-icon-facebook-with-circle\";s:5:\"photo\";s:3:\"155\";s:8:\"icocolor\";s:0:\"\";s:14:\"icohover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:12:\"bg_color_opc\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"bg_hover_color_opc\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";s:9:\"photo_src\";s:70:\"http://remoterangler.com/wp-content/uploads/2018/04/facebook-share.jpg\";}}s:16:\"icon_struc_align\";s:10:\"horizontal\";s:4:\"size\";s:3:\"120\";s:7:\"spacing\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:16:\"responsive_align\";s:7:\"default\";s:14:\"icoimage_style\";s:6:\"simple\";s:7:\"bg_size\";s:0:\"\";s:12:\"border_style\";s:4:\"none\";s:12:\"border_width\";s:0:\"\";s:16:\"bg_border_radius\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:17:\"uabb-social-share\";}}}'),(645,156,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(646,27,'_thumbnail_id','53'),(647,157,'_fl_builder_data','a:29:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dcd78f2c9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dcd78f2c9\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae2dcd799f21\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dcd799f21\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2dcd78f2c9\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2dcd79a0bb\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dcd79a0bb\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2dcd799f21\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae2dd9d75822\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd9d75822\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2dcd79a0bb\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":32:{s:12:\"social_icons\";a:1:{i:0;O:8:\"stdClass\":14:{s:1:\"0\";s:0:\"\";s:17:\"social_share_type\";s:8:\"facebook\";s:10:\"image_type\";s:5:\"photo\";s:4:\"icon\";s:36:\"ua-icon ua-icon-facebook-with-circle\";s:5:\"photo\";s:3:\"155\";s:8:\"icocolor\";s:0:\"\";s:14:\"icohover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:12:\"bg_color_opc\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:18:\"bg_hover_color_opc\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:18:\"border_hover_color\";s:0:\"\";s:9:\"photo_src\";s:70:\"http://remoterangler.com/wp-content/uploads/2018/04/facebook-share.jpg\";}}s:16:\"icon_struc_align\";s:10:\"horizontal\";s:4:\"size\";s:3:\"120\";s:7:\"spacing\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:16:\"responsive_align\";s:7:\"default\";s:14:\"icoimage_style\";s:6:\"simple\";s:7:\"bg_size\";s:0:\"\";s:12:\"border_style\";s:4:\"none\";s:12:\"border_width\";s:0:\"\";s:16:\"bg_border_radius\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:17:\"uabb-social-share\";}}}'),(648,157,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(649,27,'_generate-disable-post-image','true'),(650,158,'_wp_attached_file','2018/04/RR-Logo.jpg'),(651,158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:517;s:6:\"height\";i:653;s:4:\"file\";s:19:\"2018/04/RR-Logo.jpg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"RR-Logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"RR-Logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"RR-Logo-238x300.jpg\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"RR-Logo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:19:\"RR-Logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"RR-Logo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(652,159,'_wp_attached_file','2018/04/cropped-RR-Logo.jpg'),(653,159,'_wp_attachment_context','site-icon'),(654,159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:27:\"2018/04/cropped-RR-Logo.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-RR-Logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"cropped-RR-Logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-RR-Logo-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-RR-Logo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"cropped-RR-Logo-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-RR-Logo-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:27:\"cropped-RR-Logo-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:27:\"cropped-RR-Logo-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:27:\"cropped-RR-Logo-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:25:\"cropped-RR-Logo-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(657,64,'_edit_lock','1524821525:1'),(658,64,'uabb-cta-link',''),(659,64,'_edit_last','1'),(660,64,'_yoast_wpseo_content_score','30'),(661,27,'_yoast_wpseo_opengraph-image','http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg'),(662,27,'_yoast_wpseo_content_score','90'),(663,27,'_yoast_wpseo_focuskw_text_input','Remote Holders, Remote Caddy, Remote control organizers'),(664,27,'_yoast_wpseo_focuskw','Remote Holders, Remote Caddy, Remote control organizers.'),(665,27,'_yoast_wpseo_title','Stop Losing Your Remotes Now!'),(666,27,'_yoast_wpseo_metadesc','Are you tired of losing your Remotes? Now There is Hope! With the Remote Rangler you can link all your remotes together and find them with ease. The best Remote Holder you will ever own.'),(667,27,'_yoast_wpseo_linkdex','50'),(669,161,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(670,162,'_publicize_pending','1'),(671,162,'_fl_builder_data','a:9:{s:13:\"5ae2f498bb6cd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb6cd\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2f498bb882\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2f498bb706\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb706\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f498bb6cd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:30;}}s:13:\"5ae2f498bb73d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb73d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f498bb6cd\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"size\";s:2:\"70\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae2f498bb773\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb773\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f498bb706\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:2:\"25\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f498bb7aa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb7aa\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f498bb706\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":8:{s:4:\"icon\";s:21:\"fa fa-linkedin-square\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:4:\"left\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae2f498bb7e0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb7e0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f498bb73d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:196:\"<span style=\"color: #999999;\">Don’t hestiate to ask us something. Email us directly </span><span style=\"color: #999999;\"><span style=\"color: #808080;\"><b>Joewillett44@gmail.com</b></span></span>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae2f498bb816\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb816\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f498bb73d\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:12:\"mailto_email\";s:0:\"\";s:11:\"name_toggle\";s:4:\"show\";s:14:\"subject_toggle\";s:4:\"hide\";s:12:\"email_toggle\";s:4:\"show\";s:12:\"phone_toggle\";s:4:\"show\";s:14:\"success_action\";s:4:\"none\";s:15:\"success_message\";s:50:\"Thanks for your message! We’ll be in touch soon.\";s:11:\"success_url\";s:0:\"\";s:8:\"btn_text\";s:12:\"Send Message\";s:8:\"btn_icon\";s:11:\"fa fa-check\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:6:\"999999\";s:18:\"btn_bg_hover_color\";s:6:\"333333\";s:14:\"btn_text_color\";s:6:\"ffffff\";s:20:\"btn_text_hover_color\";s:6:\"FFFFFF\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:3:\"100\";s:21:\"btn_button_transition\";s:6:\"enable\";s:9:\"btn_width\";s:4:\"auto\";s:9:\"btn_align\";s:4:\"left\";s:13:\"btn_font_size\";s:2:\"15\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"3\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"50\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:12:\"contact-form\";s:18:\"success_url-search\";s:0:\"\";}}s:13:\"5ae2f498bb84c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb84c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f498bb73d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:20:\"LET’S GET IN TOUCH\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f498bb882\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb882\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}}'),(672,162,'_fl_builder_draft','a:9:{s:13:\"5ae2f498bb6cd\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb6cd\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2f498bb882\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2f498bb706\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb706\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f498bb6cd\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:30;}}s:13:\"5ae2f498bb73d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb73d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f498bb6cd\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"size\";s:2:\"70\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae2f498bb773\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb773\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f498bb706\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:2:\"25\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f498bb7aa\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb7aa\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f498bb706\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":8:{s:4:\"icon\";s:21:\"fa fa-linkedin-square\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:4:\"left\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae2f498bb7e0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb7e0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f498bb73d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:196:\"<span style=\"color: #999999;\">Don’t hestiate to ask us something. Email us directly </span><span style=\"color: #999999;\"><span style=\"color: #808080;\"><b>Joewillett44@gmail.com</b></span></span>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae2f498bb816\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb816\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f498bb73d\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:12:\"mailto_email\";s:0:\"\";s:11:\"name_toggle\";s:4:\"show\";s:14:\"subject_toggle\";s:4:\"hide\";s:12:\"email_toggle\";s:4:\"show\";s:12:\"phone_toggle\";s:4:\"show\";s:14:\"success_action\";s:4:\"none\";s:15:\"success_message\";s:50:\"Thanks for your message! We’ll be in touch soon.\";s:11:\"success_url\";s:0:\"\";s:8:\"btn_text\";s:12:\"Send Message\";s:8:\"btn_icon\";s:11:\"fa fa-check\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:6:\"999999\";s:18:\"btn_bg_hover_color\";s:6:\"333333\";s:14:\"btn_text_color\";s:6:\"ffffff\";s:20:\"btn_text_hover_color\";s:6:\"FFFFFF\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:3:\"100\";s:21:\"btn_button_transition\";s:6:\"enable\";s:9:\"btn_width\";s:4:\"auto\";s:9:\"btn_align\";s:4:\"left\";s:13:\"btn_font_size\";s:2:\"15\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"3\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"50\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:12:\"contact-form\";s:18:\"success_url-search\";s:0:\"\";}}s:13:\"5ae2f498bb84c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb84c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f498bb73d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:20:\"LET’S GET IN TOUCH\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f498bb882\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f498bb882\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}}'),(673,162,'_fl_builder_enabled','1'),(674,162,'_fl_builder_template_id','5ae2f498a159b'),(675,162,'_fl_builder_template_global','0'),(676,163,'_fl_builder_data','a:30:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:0:\"\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae2f4ceb18cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb18cc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2f4ceb1a5c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2f4ceb1905\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1905\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f4ceb18cc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:100;}}s:13:\"5ae2f4ceb194e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb194e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";i:20;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f4ceb1984\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1984\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":8:{s:4:\"icon\";s:21:\"fa fa-linkedin-square\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae2f4ceb1a5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1a5c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}}'),(677,163,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(678,164,'_fl_builder_data','a:30:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"62\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:62;s:5:\"title\";s:15:\"20180308_202833\";s:8:\"filename\";s:19:\"20180308_202833.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180308_202833/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_202833\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726677000;s:8:\"modified\";i:1524726677000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"93b5e1c2d3\";s:6:\"delete\";s:10:\"e24417f94a\";s:4:\"edit\";s:10:\"50a5faa22b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=62&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:1831781;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2710;s:5:\"width\";i:1416;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:157;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-157x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:535;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833-535x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\";s:6:\"height\";i:2710;s:5:\"width\";i:1416;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2d17082ffe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29e0ea9cb8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9cb8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29e0ea9e18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9e18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29e0ea9cb8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29e0ea9bf4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9bf4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae29e5a020ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e5a020ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0075a0\";s:14:\"bg_hover_color\";s:6:\"00e0b3\";s:10:\"text_color\";s:6:\"050001\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2d17082ffe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2d17082ffe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}}'),(679,164,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(680,165,'_wp_attached_file','2018/04/Energy-Healing-small.png'),(681,165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:101;s:4:\"file\";s:32:\"2018/04/Energy-Healing-small.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Energy-Healing-small-150x101.png\";s:5:\"width\";i:150;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Energy-Healing-small-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Energy-Healing-small-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(683,167,'_wp_attached_file','2018/04/American-Flag-Rustic.png'),(684,167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:773;s:6:\"height\";i:252;s:4:\"file\";s:32:\"2018/04/American-Flag-Rustic.png\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"American-Flag-Rustic-300x252.png\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"American-Flag-Rustic-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"American-Flag-Rustic-300x98.png\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"American-Flag-Rustic-768x250.png\";s:5:\"width\";i:768;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"American-Flag-Rustic-600x196.png\";s:5:\"width\";i:600;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"American-Flag-Rustic-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:32:\"American-Flag-Rustic-300x252.png\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"American-Flag-Rustic-600x196.png\";s:5:\"width\";i:600;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"American-Flag-Rustic-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(687,168,'_wp_attached_file','2018/04/Blue-Clouds-Bkgd.jpeg'),(688,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:281;s:6:\"height\";i:180;s:4:\"file\";s:29:\"2018/04/Blue-Clouds-Bkgd.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Blue-Clouds-Bkgd-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Blue-Clouds-Bkgd-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Blue-Clouds-Bkgd-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(691,170,'_fl_builder_data','a:30:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"9ef06eb6a1\";s:6:\"delete\";s:10:\"f6ee8b8b26\";s:4:\"edit\";s:10:\"ba6879e46b\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:2:\"53\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:6:\"00b795\";s:10:\"text_color\";s:6:\"0a0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae2f4ceb18cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb18cc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2f4ceb1a5c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2f4ceb1905\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1905\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f4ceb18cc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:100;}}s:13:\"5ae2f4ceb194e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb194e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";i:20;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f4ceb1984\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1984\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":9:{s:4:\"icon\";s:25:\"ua-icon ua-icon-instagram\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae2f4ceb1a5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1a5c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}}'),(692,170,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(695,172,'_edit_last','1'),(696,172,'_edit_lock','1572899072:1'),(697,172,'_publicize_pending','1'),(698,172,'discount_type','percent'),(699,172,'coupon_amount','10'),(700,172,'individual_use','no'),(701,172,'product_ids',''),(702,172,'exclude_product_ids',''),(703,172,'usage_limit','0'),(704,172,'usage_limit_per_user','0'),(705,172,'limit_usage_to_x_items','0'),(706,172,'usage_count','1'),(707,172,'date_expires','1575100800'),(708,172,'expiry_date','2018-06-30'),(709,172,'free_shipping','no'),(710,172,'product_categories','a:0:{}'),(711,172,'exclude_product_categories','a:0:{}'),(712,172,'exclude_sale_items','no'),(713,172,'minimum_amount',''),(714,172,'maximum_amount',''),(715,172,'customer_email','a:0:{}'),(716,173,'_wp_attached_file','2018/04/20180429_023213.jpg'),(717,173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2664;s:6:\"height\";i:3379;s:4:\"file\";s:27:\"2018/04/20180429_023213.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180429_023213-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180429_023213-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180429_023213-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20180429_023213-768x974.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:974;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180429_023213-807x1024.jpg\";s:5:\"width\";i:807;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20180429_023213-600x761.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:761;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180429_023213-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"20180429_023213-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20180429_023213-600x761.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:761;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180429_023213-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524960027\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:15:\"0.0222222222222\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(718,174,'_wp_attached_file','2018/04/20180429_023746.jpg'),(719,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4018;s:6:\"height\";i:1744;s:4:\"file\";s:27:\"2018/04/20180429_023746.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180429_023746-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180429_023746-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180429_023746-300x130.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20180429_023746-768x333.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180429_023746-1024x444.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20180429_023746-600x260.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180429_023746-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"20180429_023746-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20180429_023746-600x260.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180429_023746-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524959587\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(720,175,'_wp_attached_file','2018/04/20180429_022804.jpg'),(721,175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3864;s:6:\"height\";i:2578;s:4:\"file\";s:27:\"2018/04/20180429_022804.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180429_022804-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180429_022804-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180429_022804-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20180429_022804-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180429_022804-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20180429_022804-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180429_022804-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"20180429_022804-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20180429_022804-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180429_022804-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524959004\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(722,176,'_wp_attached_file','2018/04/20180430_014608.jpg'),(723,176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1762;s:6:\"height\";i:3024;s:4:\"file\";s:27:\"2018/04/20180430_014608.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180430_014608-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180430_014608-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180430_014608-175x300.jpg\";s:5:\"width\";i:175;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20180430_014608-768x1318.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1318;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180430_014608-597x1024.jpg\";s:5:\"width\";i:597;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"20180430_014608-600x1030.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1030;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180430_014608-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"20180430_014608-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"20180430_014608-600x1030.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1030;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180430_014608-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524965729\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(726,178,'_wp_attached_file','2018/04/20180430_015733.jpg'),(727,178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1690;s:6:\"height\";i:3024;s:4:\"file\";s:27:\"2018/04/20180430_015733.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180430_015733-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180430_015733-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180430_015733-168x300.jpg\";s:5:\"width\";i:168;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20180430_015733-768x1374.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180430_015733-572x1024.jpg\";s:5:\"width\";i:572;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"20180430_015733-600x1074.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1074;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180430_015733-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"20180430_015733-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"20180430_015733-600x1074.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1074;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180430_015733-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524965460\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(728,179,'_fl_builder_data','a:30:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"178\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:178;s:5:\"title\";s:15:\"20180430_015733\";s:8:\"filename\";s:19:\"20180430_015733.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:4:\"link\";s:57:\"http://remoterangler.com/howitworks/20180430_015733/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180430_015733\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:2;s:4:\"date\";i:1525081487000;s:8:\"modified\";i:1525081487000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 30, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"23cff0ccfe\";s:6:\"delete\";s:10:\"439f04e8f4\";s:4:\"edit\";s:10:\"46b1e8787d\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=178&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:61:\"http://remoterangler.com/wp-admin/post.php?post=2&action=edit\";s:15:\"uploadedToTitle\";s:12:\"How It Works\";s:15:\"filesizeInBytes\";i:2092955;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:168;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-168x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:572;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2d17082ffe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29e0ea9cb8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9cb8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29e0ea9e18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9e18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29e0ea9cb8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29e0ea9bf4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9bf4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae29e5a020ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e5a020ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0075a0\";s:14:\"bg_hover_color\";s:6:\"00e0b3\";s:10:\"text_color\";s:6:\"050001\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2d17082ffe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2d17082ffe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}}'),(729,179,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(732,151,'_yoast_wpseo_primary_product_cat',''),(733,151,'_yoast_wpseo_content_score','90'),(734,181,'_wp_attached_file','2018/04/20180429_115901.jpg'),(735,181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1576;s:6:\"height\";i:2631;s:4:\"file\";s:27:\"2018/04/20180429_115901.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180429_115901-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180429_115901-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180429_115901-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20180429_115901-768x1282.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180429_115901-613x1024.jpg\";s:5:\"width\";i:613;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"20180429_115901-600x1002.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1002;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180429_115901-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"20180429_115901-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"20180429_115901-600x1002.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1002;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180429_115901-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:27:\"20180429_115901-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524966598\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(730,180,'_wp_attached_file','2018/04/Screenshot_20180429-021127.jpg'),(731,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:917;s:6:\"height\";i:2289;s:4:\"file\";s:38:\"2018/04/Screenshot_20180429-021127.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"Screenshot_20180429-021127-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Screenshot_20180429-021127-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Screenshot_20180429-021127-120x300.jpg\";s:5:\"width\";i:120;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Screenshot_20180429-021127-768x1917.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1917;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Screenshot_20180429-021127-410x1024.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:39:\"Screenshot_20180429-021127-600x1498.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"Screenshot_20180429-021127-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:38:\"Screenshot_20180429-021127-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:39:\"Screenshot_20180429-021127-600x1498.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"Screenshot_20180429-021127-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(736,95,'_yoast_wpseo_primary_product_cat',''),(737,95,'_yoast_wpseo_content_score','60'),(738,182,'_wp_attached_file','2018/04/20180429_023213-1.jpg'),(739,182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2664;s:6:\"height\";i:3379;s:4:\"file\";s:29:\"2018/04/20180429_023213-1.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"20180429_023213-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"20180429_023213-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"20180429_023213-1-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"20180429_023213-1-768x974.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:974;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"20180429_023213-1-807x1024.jpg\";s:5:\"width\";i:807;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"20180429_023213-1-600x761.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:761;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"20180429_023213-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"20180429_023213-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"20180429_023213-1-600x761.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:761;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"20180429_023213-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:29:\"20180429_023213-1-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-G930P\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524960027\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:15:\"0.0222222222222\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(740,89,'_yoast_wpseo_primary_product_cat',''),(741,89,'_yoast_wpseo_content_score','30'),(742,183,'_wc_review_count','1'),(743,183,'_wc_rating_count','a:1:{i:5;i:1;}'),(744,183,'_wc_average_rating','5.00'),(745,183,'_edit_last','1'),(746,183,'_edit_lock','1525162707:1'),(747,183,'_thumbnail_id','189'),(779,183,'_wpas_done_all','1'),(749,183,'_sku',''),(750,183,'_regular_price','12.99'),(751,183,'_sale_price',''),(752,183,'_sale_price_dates_from',''),(753,183,'_sale_price_dates_to',''),(754,183,'total_sales','24'),(755,183,'_tax_status','taxable'),(756,183,'_tax_class',''),(757,183,'_manage_stock','no'),(758,183,'_backorders','no'),(759,183,'_sold_individually','no'),(760,183,'_weight',''),(761,183,'_length',''),(762,183,'_width',''),(763,183,'_height',''),(764,183,'_upsell_ids','a:0:{}'),(765,183,'_crosssell_ids','a:0:{}'),(766,183,'_purchase_note',''),(767,183,'_default_attributes','a:0:{}'),(768,183,'_virtual','no'),(769,183,'_downloadable','no'),(770,183,'_product_image_gallery','175,174'),(771,183,'_download_limit','-1'),(772,183,'_download_expiry','-1'),(773,183,'_stock',NULL),(774,183,'_stock_status','instock'),(775,183,'_product_version','3.6.4'),(776,183,'_price','12.99'),(777,183,'_yoast_wpseo_primary_product_cat',''),(778,183,'_yoast_wpseo_content_score','30'),(1152,223,'_wp_attached_file','2018/06/No-one-as-hard-as-us.wma'),(1151,222,'_wp_attachment_metadata','a:19:{s:5:\"codec\";s:23:\"Windows Media Audio 9.2\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:44100;s:7:\"bitrate\";i:96647;s:15:\"bits_per_sample\";i:16;s:10:\"dataformat\";s:3:\"wma\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:7:\"encoder\";s:23:\"Windows Media Audio 9.2\";s:15:\"encoder_options\";s:34:\"96 kbps, 44 kHz, stereo 1-pass CBR\";s:11:\"channelmode\";s:6:\"stereo\";s:17:\"compression_ratio\";d:0.06848568594104308127068492240141495130956172943115234375;s:10:\"fileformat\";s:3:\"asf\";s:8:\"filesize\";i:3058327;s:9:\"mime_type\";s:14:\"audio/x-ms-wma\";s:6:\"length\";i:252;s:16:\"length_formatted\";s:4:\"4:12\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(1150,222,'_wp_attached_file','2018/06/Smilen.wma'),(1149,221,'_wp_attachment_metadata','a:19:{s:5:\"codec\";s:23:\"Windows Media Audio 9.2\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:44100;s:7:\"bitrate\";i:96647;s:15:\"bits_per_sample\";i:16;s:10:\"dataformat\";s:3:\"wma\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:7:\"encoder\";s:23:\"Windows Media Audio 9.2\";s:15:\"encoder_options\";s:34:\"96 kbps, 44 kHz, stereo 1-pass CBR\";s:11:\"channelmode\";s:6:\"stereo\";s:17:\"compression_ratio\";d:0.06848568594104308127068492240141495130956172943115234375;s:10:\"fileformat\";s:3:\"asf\";s:8:\"filesize\";i:2986487;s:9:\"mime_type\";s:14:\"audio/x-ms-wma\";s:6:\"length\";i:246;s:16:\"length_formatted\";s:4:\"4:06\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(823,188,'_fl_builder_data','a:18:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:8:\"About Us\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:269:\"That\'s us on the first day we received our initial shipment of Remote Ranglers and started assembling them. I\'m Joe the one on the left and my partner Troy, is on the right. He just got out of work at Honda. Just a couple of regular guys with high hopes and BIG DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1418:\"It all started with the fact that I have way too many remotes to keep track of. I kid you not, I have 8 remotes in just my bedroom! It seems that the more technology we get, the more remotes we have to operate them. Here\'s a list of my many remotes: TV, Soundbar, Firestick, light switch, air-conditioner, aroma diffuser and 2 fan remotes, one for me and one for my girl, because she doesn\'t like it too cold. I use these remotes everyday and keeping track of each one became such a major headache. They were either in the sheets, under the pillows, under the bed or under me, sucked in by my gravitational pull (as my girlfriend puts it.) I had to do something, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard. They are always nearby and ALWAYS together. I know I\'m not the only one with this problem, people have been losing remotes since they were invented. I realized I couldn\'t live without it. That\'s when I knew other people needed this product too. So, out of necessity I created the Remote Rangler! My buddy &amp; coworker Troy was one of my first customers. He loved it so much, that he offered to help me launch it, as his previous job experience related to our business well, and we became partners. Now, we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae81818cfb4f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cfb4f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae81818cfe8a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cfe8a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae81818cfb4f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae81818cf975\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cf975\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae81818cfe8a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:13:\"View Products\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00eacf\";s:14:\"bg_hover_color\";s:6:\"0023d3\";s:10:\"text_color\";s:6:\"0c0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:13:\"border_radius\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}}'),(824,188,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(825,189,'_wp_attached_file','2018/05/20180430_231400.jpg'),(826,189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3024;s:6:\"height\";i:4032;s:4:\"file\";s:27:\"2018/05/20180430_231400.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180430_231400-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180430_231400-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"20180430_231400-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180430_231400-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180430_231400-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20180430_231400-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180430_231400-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"20180430_231400-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20180430_231400-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180430_231400-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(827,190,'_wp_attached_file','2018/05/20180309_010536.jpg'),(828,190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2140;s:6:\"height\";i:2650;s:4:\"file\";s:27:\"2018/05/20180309_010536.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180309_010536-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180309_010536-242x300.jpg\";s:5:\"width\";i:242;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20180309_010536-768x951.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:951;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"20180309_010536-827x1024.jpg\";s:5:\"width\";i:827;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180309_010536-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20180309_010536-600x743.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:743;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180309_010536-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"20180309_010536-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20180309_010536-600x743.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:743;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180309_010536-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(830,192,'_wp_attached_file','2018/05/20180405_230244.jpg'),(831,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3015;s:6:\"height\";i:2964;s:4:\"file\";s:27:\"2018/05/20180405_230244.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"20180405_230244-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"20180405_230244-300x295.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"20180405_230244-768x755.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:755;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"20180405_230244-1024x1007.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1007;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"20180405_230244-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"20180405_230244-600x590.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:590;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180405_230244-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"20180405_230244-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"20180405_230244-600x590.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:590;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"20180405_230244-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(833,193,'_wp_attached_file','2018/05/Remote-Rangler-pitch-deck-collab.pdf'),(834,123,'_yoast_wpseo_content_score','60'),(835,195,'_fl_builder_data','a:30:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":66:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/27-2/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524819663000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"24932895fe\";s:6:\"delete\";s:10:\"d9f3499f58\";s:4:\"edit\";s:10:\"825d6b18f6\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";s:24:\"flrich1525166498007_text\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":115:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:3:\"189\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/05/20180430_231400-768x1024.jpg\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:6:\"00b795\";s:10:\"text_color\";s:6:\"ffffff\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae2f4ceb18cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb18cc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2f4ceb1a5c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2f4ceb1905\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1905\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f4ceb18cc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:100;}}s:13:\"5ae2f4ceb194e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb194e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";i:20;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f4ceb1984\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1984\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":9:{s:4:\"icon\";s:25:\"ua-icon ua-icon-instagram\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae2f4ceb1a5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1a5c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}}'),(836,195,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(837,196,'_order_key','wc_order_5ae8b2556c32f'),(838,196,'_customer_user','0'),(839,196,'_payment_method','ppec_paypal'),(840,196,'_payment_method_title','PayPal Express Checkout'),(841,196,'_transaction_id','7R531109VW935534B'),(842,196,'_customer_ip_address','23.241.128.7'),(843,196,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_3_1 like mac os x) applewebkit/604.1.34 (khtml, like gecko) crios/66.0.3359.122 mobile/15e302 safari/604.1'),(844,196,'_created_via','checkout'),(845,196,'_date_completed','1533719016'),(846,196,'_completed_date','2018-08-08 09:03:36'),(847,196,'_date_paid','1525199447'),(848,196,'_paid_date','2018-05-01 18:30:47'),(849,196,'_cart_hash','d8316b0f37efe5296bf389e03b530ce8'),(850,196,'_billing_first_name','Michael'),(851,196,'_billing_last_name','Willett'),(852,196,'_billing_company','Residential Plans'),(853,196,'_billing_address_1','41463 Myrtle Street'),(854,196,'_billing_address_2',''),(855,196,'_billing_city','Palmdale'),(856,196,'_billing_state','CA'),(857,196,'_billing_postcode','93551'),(858,196,'_billing_country','US'),(859,196,'_billing_email','mawillett@gmail.com'),(860,196,'_billing_phone',''),(861,196,'_shipping_first_name','Michael'),(862,196,'_shipping_last_name','Willett'),(863,196,'_shipping_company','Residential Plans'),(864,196,'_shipping_address_1','41463 Myrtle Street'),(865,196,'_shipping_address_2',''),(866,196,'_shipping_city','Palmdale'),(867,196,'_shipping_state','CA'),(868,196,'_shipping_postcode','93551'),(869,196,'_shipping_country','US'),(870,196,'_order_currency','USD'),(871,196,'_cart_discount','0'),(872,196,'_cart_discount_tax','0'),(873,196,'_order_shipping','0.99'),(874,196,'_order_shipping_tax','0'),(875,196,'_order_tax','1.23'),(876,196,'_order_total','15.21'),(877,196,'_order_version','3.3.5'),(878,196,'_prices_include_tax','no'),(879,196,'_billing_address_index','Michael Willett Residential Plans 41463 Myrtle Street  Palmdale CA 93551 US mawillett@gmail.com '),(880,196,'_shipping_address_index','Michael Willett Residential Plans 41463 Myrtle Street  Palmdale CA 93551 US '),(881,196,'_shipping_phone',''),(882,196,'_paypal_status','completed'),(883,196,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"7R531109VW935534B\";s:6:\"amount\";s:5:\"15.21\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(884,196,'_download_permissions_granted','yes'),(885,196,'_recorded_sales','yes'),(886,196,'_recorded_coupon_usage_counts','yes'),(887,196,'_order_stock_reduced','yes'),(888,197,'_order_currency','USD'),(889,197,'_cart_discount','0'),(890,197,'_cart_discount_tax','0'),(891,197,'_order_shipping','0'),(892,197,'_order_shipping_tax','0'),(893,197,'_order_tax','0'),(894,197,'_order_total','-15.21'),(895,197,'_order_version','3.3.5'),(896,197,'_prices_include_tax','no'),(897,197,'_refund_amount','15.21'),(898,197,'_refunded_by','1'),(899,197,'_refund_reason','Order fully refunded'),(1147,220,'_edit_lock','1528580626:1'),(1148,221,'_wp_attached_file','2018/06/Luxury-the-Life.wma'),(1146,220,'_edit_last','1'),(1145,217,'_edit_lock','1528575658:1'),(1443,27,'_fl_builder_data_back','a:56:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":66:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/27-2/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524819663000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"24932895fe\";s:6:\"delete\";s:10:\"d9f3499f58\";s:4:\"edit\";s:10:\"825d6b18f6\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";s:24:\"flrich1525166498007_text\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":115:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:3:\"189\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/05/20180430_231400-768x1024.jpg\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:6:\"00b795\";s:10:\"text_color\";s:6:\"ffffff\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae2f4ceb18cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb18cc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2f4ceb1a5c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2f4ceb1905\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1905\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f4ceb18cc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:100;}}s:13:\"5ae2f4ceb194e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb194e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";i:20;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f4ceb1984\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1984\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":9:{s:4:\"icon\";s:25:\"ua-icon ua-icon-instagram\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae2f4ceb1a5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1a5c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f0f65c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0f65c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:6;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f17b81\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f17b81\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa143f18388\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f18388\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa143f17b81\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa143f0efc5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0efc5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa143f18388\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14610bd7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bd7a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5afa14610bdb3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bdb3\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610bde9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bde9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610be1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be1f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bd7a\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14610be55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be55\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5afa14610be8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:7:\"heading\";s:12:\"How It Works\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5afa14610bec1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bec1\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bef6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bef6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bf2c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf2c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bec1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610bf63\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf63\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bef6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14610bf98\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf98\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610bfce\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bfce\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610c004\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c004\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bf98\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14610c03a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c03a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bfce\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610c070\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c070\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:5;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:6:\"layout\";s:5:\"1-col\";}}s:13:\"5afa148bd3b5a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd3b5a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa148bdd99a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bdd99a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa148bd3b5a\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa148bde51c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bde51c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa148bdd99a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa148bd320e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd320e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa148bde51c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14b6e6179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e6179\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14b6e74b0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e74b0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14b6e6179\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14b6e5511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e5511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14b6e74b0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:6:\"layout\";s:12:\"product_page\";s:10:\"product_id\";s:0:\"\";s:13:\"parent_cat_id\";s:1:\"0\";s:11:\"cat_columns\";s:1:\"4\";s:15:\"products_source\";s:3:\"ids\";s:11:\"product_ids\";s:0:\"\";s:13:\"category_slug\";s:0:\"\";s:12:\"num_products\";s:2:\"12\";s:7:\"columns\";s:1:\"4\";s:7:\"orderby\";s:10:\"menu_order\";s:5:\"order\";s:3:\"ASC\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:11:\"woocommerce\";}}}'),(1527,259,'_payment_method','ppec_paypal'),(926,204,'_order_key','wc_order_5af10424a67cf'),(923,202,'_wp_attached_file','2018/05/Remote-Rangler-one-page-Summary.pdf'),(927,204,'_customer_user','0'),(928,204,'_payment_method','ppec_paypal'),(929,204,'_payment_method_title','PayPal Express Checkout'),(930,204,'_transaction_id','72P64607EF4063113'),(931,204,'_customer_ip_address','142.196.218.6'),(932,204,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_3 like mac os x) applewebkit/605.1.15 (khtml, like gecko) version/11.0 mobile/15e148 safari/604.1'),(933,204,'_created_via','checkout'),(934,204,'_date_completed','1525748233'),(935,204,'_completed_date','2018-05-08 02:57:13'),(936,204,'_date_paid','1525744680'),(937,204,'_paid_date','2018-05-08 01:58:00'),(938,204,'_cart_hash','b929e67f48eef500352a62649fa3ee2e'),(939,204,'_billing_first_name','Tyler'),(940,204,'_billing_last_name','Aguirre'),(941,204,'_billing_company',''),(942,204,'_billing_address_1','4145 golden willow circle'),(943,204,'_billing_address_2',''),(944,204,'_billing_city','apopka'),(945,204,'_billing_state','FL'),(946,204,'_billing_postcode','32712'),(947,204,'_billing_country','US'),(948,204,'_billing_email','taguirre21@gmail.com'),(949,204,'_billing_phone',''),(950,204,'_shipping_first_name','Tyler'),(951,204,'_shipping_last_name','Aguirre'),(952,204,'_shipping_company',''),(953,204,'_shipping_address_1','4145 golden willow circle'),(954,204,'_shipping_address_2',''),(955,204,'_shipping_city','apopka'),(956,204,'_shipping_state','FL'),(957,204,'_shipping_postcode','32712'),(958,204,'_shipping_country','US'),(959,204,'_order_currency','USD'),(960,204,'_cart_discount','1.3'),(961,204,'_cart_discount_tax','0.1235'),(962,204,'_order_shipping','0.99'),(963,204,'_order_shipping_tax','0'),(964,204,'_order_tax','1.11'),(965,204,'_order_total','13.79'),(966,204,'_order_version','3.3.5'),(967,204,'_prices_include_tax','no'),(968,204,'_billing_address_index','Tyler Aguirre  4145 golden willow circle  apopka FL 32712 US taguirre21@gmail.com '),(969,204,'_shipping_address_index','Tyler Aguirre  4145 golden willow circle  apopka FL 32712 US '),(983,204,'_shipping_phone',''),(971,204,'_paypal_status','completed'),(972,204,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"72P64607EF4063113\";s:6:\"amount\";s:5:\"13.79\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(973,204,'_download_permissions_granted','yes'),(974,204,'_recorded_sales','yes'),(975,204,'_recorded_coupon_usage_counts','yes'),(976,172,'_used_by','taguirre21@gmail.com'),(977,204,'_order_stock_reduced','yes'),(978,204,'_edit_lock','1525791858:1'),(979,204,'wf_wc_shipment_source','a:4:{s:14:\"shipment_id_cs\";s:22:\"9400110200830921391269\";s:16:\"shipping_service\";s:33:\"united-states-postal-service-usps\";s:10:\"order_date\";s:0:\"\";s:17:\"shipping_postcode\";s:5:\"32712\";}'),(980,204,'wf_wc_shipment_result','a:3:{s:7:\"message\";s:56:\"Your order was shipped via United States Postal Service.\";s:13:\"tracking_info\";a:1:{i:0;a:2:{s:13:\"tracking_link\";s:86:\"https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1=9400110200830921391269\";s:11:\"tracking_id\";s:22:\"9400110200830921391269\";}}s:17:\"tracking_info_api\";a:1:{i:0;a:4:{s:13:\"tracking_link\";s:86:\"https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1=9400110200830921391269\";s:11:\"tracking_id\";s:22:\"9400110200830921391269\";s:19:\"api_tracking_status\";N;s:18:\"api_tracking_error\";N;}}}'),(981,204,'wftrackingmsg','Your order was shipped via United States Postal Service. To track shipment, please follow the shipment ID(s)  <a href=\"https://tools.usps.com/go/TrackConfirmAction_input?qtc_tLabels1=9400110200830921391269\" target=\"_blank\">9400110200830921391269</a>.'),(982,204,'_edit_last','1'),(995,205,'_fl_builder_enabled','1'),(996,205,'_fl_builder_template_id','5afa14092dea8'),(997,205,'_fl_builder_template_global','0'),(1004,208,'_fl_builder_data','a:30:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":28:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:176:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0?autoplay=1\" frameborder=\"0\" allow=\"?autoplay=1; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";s:10:\"poster_src\";s:0:\"\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"178\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:178;s:5:\"title\";s:15:\"20180430_015733\";s:8:\"filename\";s:19:\"20180430_015733.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:4:\"link\";s:57:\"http://remoterangler.com/howitworks/20180430_015733/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180430_015733\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:2;s:4:\"date\";i:1525081487000;s:8:\"modified\";i:1525081487000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 30, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"23cff0ccfe\";s:6:\"delete\";s:10:\"439f04e8f4\";s:4:\"edit\";s:10:\"46b1e8787d\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=178&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:61:\"http://remoterangler.com/wp-admin/post.php?post=2&action=edit\";s:15:\"uploadedToTitle\";s:12:\"How It Works\";s:15:\"filesizeInBytes\";i:2092955;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:168;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-168x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:572;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2d17082ffe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29e0ea9cb8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9cb8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29e0ea9e18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9e18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29e0ea9cb8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29e0ea9bf4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9bf4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae29e5a020ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e5a020ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0075a0\";s:14:\"bg_hover_color\";s:6:\"00e0b3\";s:10:\"text_color\";s:6:\"050001\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2d17082ffe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2d17082ffe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}}');
INSERT INTO `wprl_postmeta` VALUES (998,206,'_fl_builder_data','a:56:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":66:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/27-2/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524819663000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"24932895fe\";s:6:\"delete\";s:10:\"d9f3499f58\";s:4:\"edit\";s:10:\"825d6b18f6\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";s:24:\"flrich1525166498007_text\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":115:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:3:\"189\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/05/20180430_231400-768x1024.jpg\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:6:\"00b795\";s:10:\"text_color\";s:6:\"ffffff\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae2f4ceb18cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb18cc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2f4ceb1a5c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2f4ceb1905\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1905\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f4ceb18cc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:100;}}s:13:\"5ae2f4ceb194e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb194e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";i:20;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f4ceb1984\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1984\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":9:{s:4:\"icon\";s:25:\"ua-icon ua-icon-instagram\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae2f4ceb1a5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1a5c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f0f65c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0f65c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:6;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f17b81\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f17b81\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa143f18388\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f18388\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa143f17b81\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa143f0efc5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0efc5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa143f18388\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14610bd7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bd7a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5afa14610bdb3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bdb3\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610bde9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bde9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610be1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be1f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bd7a\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14610be55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be55\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5afa14610be8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:7:\"heading\";s:12:\"How It Works\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5afa14610bec1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bec1\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bef6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bef6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bf2c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf2c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bec1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610bf63\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf63\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bef6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14610bf98\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf98\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610bfce\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bfce\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610c004\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c004\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bf98\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14610c03a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c03a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bfce\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610c070\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c070\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:5;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:6:\"layout\";s:5:\"1-col\";}}s:13:\"5afa148bd3b5a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd3b5a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa148bdd99a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bdd99a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa148bd3b5a\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa148bde51c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bde51c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa148bdd99a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa148bd320e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd320e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa148bde51c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14b6e6179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e6179\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14b6e74b0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e74b0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14b6e6179\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14b6e5511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e5511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14b6e74b0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:6:\"layout\";s:12:\"product_page\";s:10:\"product_id\";s:0:\"\";s:13:\"parent_cat_id\";s:1:\"0\";s:11:\"cat_columns\";s:1:\"4\";s:15:\"products_source\";s:3:\"ids\";s:11:\"product_ids\";s:0:\"\";s:13:\"category_slug\";s:0:\"\";s:12:\"num_products\";s:2:\"12\";s:7:\"columns\";s:1:\"4\";s:7:\"orderby\";s:10:\"menu_order\";s:5:\"order\";s:3:\"ASC\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:11:\"woocommerce\";}}}'),(999,206,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1530,259,'_customer_ip_address','64.60.19.114'),(1529,259,'_transaction_id','1RN43738FH4128137'),(1528,259,'_payment_method_title','PayPal Checkout'),(1525,259,'_order_key','wc_order_5ba96aea483ec'),(1001,207,'_fl_builder_data','a:30:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":28:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:165:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"?autoplay=1; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";s:10:\"poster_src\";s:0:\"\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"178\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:178;s:5:\"title\";s:15:\"20180430_015733\";s:8:\"filename\";s:19:\"20180430_015733.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:4:\"link\";s:57:\"http://remoterangler.com/howitworks/20180430_015733/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180430_015733\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:2;s:4:\"date\";i:1525081487000;s:8:\"modified\";i:1525081487000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 30, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"23cff0ccfe\";s:6:\"delete\";s:10:\"439f04e8f4\";s:4:\"edit\";s:10:\"46b1e8787d\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=178&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:61:\"http://remoterangler.com/wp-admin/post.php?post=2&action=edit\";s:15:\"uploadedToTitle\";s:12:\"How It Works\";s:15:\"filesizeInBytes\";i:2092955;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:168;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-168x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:572;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2d17082ffe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29e0ea9cb8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9cb8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29e0ea9e18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9e18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29e0ea9cb8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29e0ea9bf4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9bf4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae29e5a020ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e5a020ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0075a0\";s:14:\"bg_hover_color\";s:6:\"00e0b3\";s:10:\"text_color\";s:6:\"050001\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2d17082ffe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2d17082ffe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}}'),(1002,207,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1007,209,'_fl_builder_data','a:30:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":28:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:167:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/G-aqHkBC2-o?autoplay=1\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";s:10:\"poster_src\";s:0:\"\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"178\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:178;s:5:\"title\";s:15:\"20180430_015733\";s:8:\"filename\";s:19:\"20180430_015733.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:4:\"link\";s:57:\"http://remoterangler.com/howitworks/20180430_015733/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180430_015733\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:2;s:4:\"date\";i:1525081487000;s:8:\"modified\";i:1525081487000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 30, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"23cff0ccfe\";s:6:\"delete\";s:10:\"439f04e8f4\";s:4:\"edit\";s:10:\"46b1e8787d\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=178&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:61:\"http://remoterangler.com/wp-admin/post.php?post=2&action=edit\";s:15:\"uploadedToTitle\";s:12:\"How It Works\";s:15:\"filesizeInBytes\";i:2092955;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:168;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-168x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:572;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2d17082ffe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29e0ea9cb8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9cb8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29e0ea9e18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9e18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29e0ea9cb8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29e0ea9bf4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9bf4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae29e5a020ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e5a020ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0075a0\";s:14:\"bg_hover_color\";s:6:\"00e0b3\";s:10:\"text_color\";s:6:\"050001\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2d17082ffe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2d17082ffe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}}'),(1005,208,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1008,209,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1010,210,'_wp_attached_file','2018/05/Remote-Rangler-Logo-White-background.jpg'),(1011,210,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1317;s:6:\"height\";i:485;s:4:\"file\";s:48:\"2018/05/Remote-Rangler-Logo-White-background.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Remote-Rangler-Logo-White-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Remote-Rangler-Logo-White-background-300x110.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Remote-Rangler-Logo-White-background-768x283.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Remote-Rangler-Logo-White-background-1024x377.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:377;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Remote-Rangler-Logo-White-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Remote-Rangler-Logo-White-background-600x221.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Remote-Rangler-Logo-White-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Remote-Rangler-Logo-White-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Remote-Rangler-Logo-White-background-600x221.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Remote-Rangler-Logo-White-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1012,211,'_wp_attached_file','2018/05/cropped-Remote-Rangler-Logo-White-background.jpg'),(1013,211,'_wp_attachment_context','custom-logo'),(1014,211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1302;s:6:\"height\";i:460;s:4:\"file\";s:56:\"2018/05/cropped-Remote-Rangler-Logo-White-background.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"cropped-Remote-Rangler-Logo-White-background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"cropped-Remote-Rangler-Logo-White-background-300x106.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"cropped-Remote-Rangler-Logo-White-background-768x271.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"cropped-Remote-Rangler-Logo-White-background-1024x362.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:56:\"cropped-Remote-Rangler-Logo-White-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:56:\"cropped-Remote-Rangler-Logo-White-background-600x212.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:56:\"cropped-Remote-Rangler-Logo-White-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:56:\"cropped-Remote-Rangler-Logo-White-background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:56:\"cropped-Remote-Rangler-Logo-White-background-600x212.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:56:\"cropped-Remote-Rangler-Logo-White-background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1188,234,'_edit_lock','1572902740:1'),(1189,235,'_wp_attached_file','2018/06/Remote-Rangler-Buyer-one-page-summary.pdf'),(1433,82,'_yoast_wpseo_meta-robots-noindex',''),(1020,216,'_edit_last','1'),(1021,216,'_edit_lock','1526925976:1'),(1022,216,'discount_type','percent'),(1023,216,'coupon_amount','60'),(1024,216,'individual_use','no'),(1025,216,'product_ids',''),(1026,216,'exclude_product_ids',''),(1027,216,'usage_limit','7'),(1028,216,'usage_limit_per_user','2'),(1029,216,'limit_usage_to_x_items','0'),(1030,216,'usage_count','1'),(1031,216,'date_expires','1535673600'),(1032,216,'expiry_date','2018-08-31'),(1033,216,'free_shipping','no'),(1034,216,'product_categories','a:0:{}'),(1035,216,'exclude_product_categories','a:0:{}'),(1036,216,'exclude_sale_items','no'),(1037,216,'minimum_amount',''),(1038,216,'maximum_amount',''),(1039,216,'customer_email','a:0:{}'),(1040,217,'_order_key','wc_order_5b0343b7e2895'),(1041,217,'_customer_user','0'),(1042,217,'_payment_method','ppec_paypal'),(1043,217,'_payment_method_title','PayPal Express Checkout'),(1044,217,'_transaction_id','0JS28286HJ5934034'),(1045,217,'_customer_ip_address','40.142.185.202'),(1046,217,'_customer_user_agent','mozilla/5.0 (linux; android 5.0; samsung-sm-g900a build/lrx21t) applewebkit/537.36 (khtml, like gecko) chrome/66.0.3359.158 mobile safari/537.36'),(1047,217,'_created_via','checkout'),(1048,217,'_date_completed','1528575831'),(1049,217,'_completed_date','2018-06-09 20:23:51'),(1050,217,'_date_paid','1526940604'),(1051,217,'_paid_date','2018-05-21 22:10:04'),(1052,217,'_cart_hash','5817483f15b2335a8312733b73b99ac2'),(1053,217,'_billing_first_name','Mark'),(1054,217,'_billing_last_name','Bartel'),(1055,217,'_billing_company',''),(1056,217,'_billing_address_1','11112 Ravenna Rd'),(1057,217,'_billing_address_2',''),(1058,217,'_billing_city','Twinsburg'),(1059,217,'_billing_state','OH'),(1060,217,'_billing_postcode','44087'),(1061,217,'_billing_country','US'),(1062,217,'_billing_email','mb_sports@yahoo.com'),(1063,217,'_billing_phone',''),(1064,217,'_shipping_first_name','Mark'),(1065,217,'_shipping_last_name','Bartel'),(1066,217,'_shipping_company',''),(1067,217,'_shipping_address_1','11112 Ravenna Rd'),(1068,217,'_shipping_address_2',''),(1069,217,'_shipping_city','Twinsburg'),(1070,217,'_shipping_state','OH'),(1071,217,'_shipping_postcode','44087'),(1072,217,'_shipping_country','US'),(1073,217,'_order_currency','USD'),(1074,217,'_cart_discount','17.39'),(1075,217,'_cart_discount_tax','1.65'),(1076,217,'_order_shipping','0.99'),(1077,217,'_order_shipping_tax','0'),(1078,217,'_order_tax','1.1'),(1079,217,'_order_total','13.69'),(1080,217,'_order_version','3.3.5'),(1081,217,'_prices_include_tax','no'),(1082,217,'_billing_address_index','Mark Bartel  11112 Ravenna Rd  Twinsburg OH 44087 US mb_sports@yahoo.com '),(1083,217,'_shipping_address_index','Mark Bartel  11112 Ravenna Rd  Twinsburg OH 44087 US '),(1084,217,'_shipping_phone',''),(1085,217,'_paypal_status','completed'),(1086,217,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"0JS28286HJ5934034\";s:6:\"amount\";s:5:\"13.69\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(1087,217,'_download_permissions_granted','yes'),(1088,217,'_recorded_sales','yes'),(1089,217,'_recorded_coupon_usage_counts','yes'),(1090,216,'_used_by','mb_sports@yahoo.com'),(1091,217,'_order_stock_reduced','yes'),(1161,220,'_fl_builder_data','a:7:{s:13:\"5b1c3c04bb556\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bb556\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5b1c3c04bc784\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bc784\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c04bcc70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bcc70\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c04bc784\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c04bebd1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bebd1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c04bcc70\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:51:\"[playlist images=\"false\" ids=\"221,222,224,225,223\"]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5b1c3c4ab28fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab28fc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c4ab2c34\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab2c34\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c4ab28fc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c4ab26f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab26f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c4ab2c34\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:10:\"audio_type\";s:13:\"media_library\";s:6:\"audios\";a:5:{i:0;i:221;i:1;i:222;i:2;i:224;i:3;i:225;i:4;i:223;}s:4:\"link\";s:0:\"\";s:8:\"autoplay\";s:1:\"0\";s:4:\"loop\";s:1:\"0\";s:5:\"style\";s:5:\"light\";s:9:\"tracklist\";s:1:\"1\";s:12:\"tracknumbers\";s:1:\"1\";s:6:\"images\";s:1:\"0\";s:7:\"artists\";s:1:\"1\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"audio\";}}}'),(1162,220,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1163,220,'_fl_builder_enabled',''),(1164,227,'_fl_builder_data','a:7:{s:13:\"5b1c3c04bb556\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bb556\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5b1c3c04bc784\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bc784\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c04bcc70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bcc70\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c04bc784\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c04bebd1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bebd1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c04bcc70\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:51:\"[playlist images=\"false\" ids=\"221,222,224,225,223\"]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5b1c3c4ab28fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab28fc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c4ab2c34\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab2c34\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c4ab28fc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c4ab26f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab26f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c4ab2c34\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:10:\"audio_type\";s:13:\"media_library\";s:6:\"audios\";a:5:{i:0;i:221;i:1;i:222;i:2;i:224;i:3;i:225;i:4;i:223;}s:4:\"link\";s:0:\"\";s:8:\"autoplay\";s:1:\"0\";s:4:\"loop\";s:1:\"0\";s:5:\"style\";s:5:\"light\";s:9:\"tracklist\";s:1:\"1\";s:12:\"tracknumbers\";s:1:\"1\";s:6:\"images\";s:1:\"0\";s:7:\"artists\";s:1:\"1\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"audio\";}}}'),(1165,227,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1167,228,'_fl_builder_data','a:7:{s:13:\"5b1c3c04bb556\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bb556\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5b1c3c04bc784\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bc784\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c04bcc70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bcc70\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c04bc784\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c04bebd1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bebd1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c04bcc70\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:51:\"[playlist images=\"false\" ids=\"221,222,224,225,223\"]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5b1c3c4ab28fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab28fc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c4ab2c34\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab2c34\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c4ab28fc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c4ab26f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab26f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c4ab2c34\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:10:\"audio_type\";s:13:\"media_library\";s:6:\"audios\";a:5:{i:0;i:221;i:1;i:222;i:2;i:224;i:3;i:225;i:4;i:223;}s:4:\"link\";s:0:\"\";s:8:\"autoplay\";s:1:\"0\";s:4:\"loop\";s:1:\"0\";s:5:\"style\";s:5:\"light\";s:9:\"tracklist\";s:1:\"1\";s:12:\"tracknumbers\";s:1:\"1\";s:6:\"images\";s:1:\"0\";s:7:\"artists\";s:1:\"1\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"audio\";}}}'),(1168,228,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1170,230,'_fl_builder_data','a:7:{s:13:\"5b1c3c04bb556\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bb556\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5b1c3c04bc784\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bc784\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c04bcc70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bcc70\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c04bc784\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c04bebd1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bebd1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c04bcc70\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:51:\"[playlist images=\"false\" ids=\"221,222,224,225,223\"]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5b1c3c4ab28fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab28fc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c4ab2c34\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab2c34\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c4ab28fc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c4ab26f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab26f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c4ab2c34\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:10:\"audio_type\";s:13:\"media_library\";s:6:\"audios\";a:5:{i:0;i:221;i:1;i:222;i:2;i:224;i:3;i:225;i:4;i:223;}s:4:\"link\";s:0:\"\";s:8:\"autoplay\";s:1:\"0\";s:4:\"loop\";s:1:\"0\";s:5:\"style\";s:5:\"light\";s:9:\"tracklist\";s:1:\"1\";s:12:\"tracknumbers\";s:1:\"1\";s:6:\"images\";s:1:\"0\";s:7:\"artists\";s:1:\"1\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"audio\";}}}'),(1171,230,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1173,231,'_fl_builder_data','a:7:{s:13:\"5b1c3c04bb556\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bb556\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5b1c3c04bc784\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bc784\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c04bcc70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bcc70\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c04bc784\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c04bebd1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bebd1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c04bcc70\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:51:\"[playlist images=\"false\" ids=\"221,222,224,225,223\"]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5b1c3c4ab28fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab28fc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c4ab2c34\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab2c34\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c4ab28fc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c4ab26f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab26f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c4ab2c34\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:10:\"audio_type\";s:13:\"media_library\";s:6:\"audios\";a:5:{i:0;i:221;i:1;i:222;i:2;i:224;i:3;i:225;i:4;i:223;}s:4:\"link\";s:0:\"\";s:8:\"autoplay\";s:1:\"0\";s:4:\"loop\";s:1:\"0\";s:5:\"style\";s:5:\"light\";s:9:\"tracklist\";s:1:\"1\";s:12:\"tracknumbers\";s:1:\"1\";s:6:\"images\";s:1:\"0\";s:7:\"artists\";s:1:\"1\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"audio\";}}}'),(1174,231,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1176,232,'_fl_builder_data','a:7:{s:13:\"5b1c3c04bb556\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bb556\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5b1c3c04bc784\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bc784\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c04bcc70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bcc70\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c04bc784\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c04bebd1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bebd1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c04bcc70\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:51:\"[playlist images=\"false\" ids=\"221,222,224,225,223\"]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5b1c3c4ab28fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab28fc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c4ab2c34\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab2c34\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c4ab28fc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c4ab26f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab26f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c4ab2c34\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:10:\"audio_type\";s:13:\"media_library\";s:6:\"audios\";a:5:{i:0;i:221;i:1;i:222;i:2;i:224;i:3;i:225;i:4;i:223;}s:4:\"link\";s:0:\"\";s:8:\"autoplay\";s:1:\"0\";s:4:\"loop\";s:1:\"0\";s:5:\"style\";s:5:\"light\";s:9:\"tracklist\";s:1:\"1\";s:12:\"tracknumbers\";s:1:\"1\";s:6:\"images\";s:1:\"0\";s:7:\"artists\";s:1:\"1\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"audio\";}}}'),(1177,232,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1190,234,'_yoast_wpseo_content_score','60'),(1187,234,'_edit_last','1'),(1200,234,'_generate-disable-headline','true'),(1192,234,'_fl_builder_draft','a:4:{s:13:\"5dc0899282241\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899282241\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":167:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:16:\"enable_particles\";s:2:\"no\";s:24:\"uabb_row_particles_style\";s:4:\"none\";s:26:\"uabb_particles_custom_code\";s:0:\"\";s:24:\"uabb_particles_direction\";s:6:\"bottom\";s:24:\"uabb_row_particles_color\";s:0:\"\";s:32:\"uabb_row_particles_color_opacity\";s:0:\"\";s:27:\"uabb_row_particles_settings\";s:2:\"no\";s:25:\"uabb_row_number_particles\";s:0:\"\";s:23:\"uabb_row_particles_size\";s:0:\"\";s:24:\"uabb_row_particles_speed\";s:0:\"\";s:39:\"uabb_row_particles_interactive_settings\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899283f69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899283f69\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dc0899282241\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dc08992844e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08992844e7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dc0899283f69\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":107:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:22:\"uabb_col_gradient_type\";s:6:\"linear\";s:31:\"uabb_col_gradient_primary_color\";s:0:\"\";s:33:\"uabb_col_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_col_radial_direction\";s:13:\"center_center\";s:23:\"uabb_col_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_col_linear_direction\";s:2:\"24\";s:31:\"uabb_col_linear_advance_options\";s:2:\"no\";s:36:\"uabb_col_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_col_radial_advance_options\";s:2:\"no\";s:36:\"uabb_col_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_radial_gradient_secondary_loc\";s:3:\"100\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:15:\"col_drop_shadow\";s:2:\"no\";s:20:\"col_shadow_color_hor\";s:1:\"0\";s:20:\"col_shadow_color_ver\";s:1:\"0\";s:21:\"col_shadow_color_blur\";s:1:\"7\";s:20:\"col_shadow_color_spr\";s:1:\"0\";s:16:\"col_shadow_color\";s:21:\"rgba(168,168,168,0.5)\";s:16:\"col_hover_shadow\";s:2:\"no\";s:26:\"col_shadow_color_hor_hover\";s:1:\"0\";s:26:\"col_shadow_color_ver_hover\";s:1:\"0\";s:27:\"col_shadow_color_blur_hover\";s:2:\"10\";s:26:\"col_shadow_color_spr_hover\";s:1:\"1\";s:22:\"col_shadow_color_hover\";s:21:\"rgba(168,168,168,0.9)\";s:27:\"col_shadow_hover_transition\";i:200;s:21:\"col_responsive_shadow\";s:2:\"no\";s:16:\"col_small_shadow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899287cea\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899287cea\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":28:{s:4:\"text\";s:435:\"<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}}'),(1193,234,'_fl_builder_draft_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(1432,82,'_yoast_wpseo_title','%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%'),(1296,248,'_order_total','48.04'),(1206,247,'_order_key','wc_order_5b432212396c7'),(1207,247,'_customer_user','0'),(1208,247,'_payment_method','ppec_paypal'),(1209,247,'_payment_method_title','PayPal Express Checkout'),(1210,247,'_transaction_id','2UT10605FE301535V'),(1211,247,'_customer_ip_address','66.232.209.201'),(1212,247,'_customer_user_agent','mozilla/5.0 (linux; android 8.0.0; sm-t827v build/r16nw) applewebkit/537.36 (khtml, like gecko) chrome/67.0.3396.87 safari/537.36'),(1213,247,'_created_via','checkout'),(1214,247,'_date_completed','1533719015'),(1215,247,'_completed_date','2018-08-08 09:03:35'),(1216,247,'_date_paid','1531126293'),(1217,247,'_paid_date','2018-07-09 08:51:33'),(1218,247,'_cart_hash','d8316b0f37efe5296bf389e03b530ce8'),(1219,247,'_billing_first_name','Debi'),(1220,247,'_billing_last_name','Shoemaker Shupe'),(1221,247,'_billing_company',''),(1222,247,'_billing_address_1','410 E 21st'),(1223,247,'_billing_address_2',''),(1224,247,'_billing_city','Hays'),(1225,247,'_billing_state','KS'),(1226,247,'_billing_postcode','67601'),(1227,247,'_billing_country','US'),(1228,247,'_billing_email','debishupe0530@gmail.com'),(1229,247,'_billing_phone',''),(1230,247,'_shipping_first_name','Debi'),(1231,247,'_shipping_last_name','Shoemaker Shupe'),(1232,247,'_shipping_company',''),(1233,247,'_shipping_address_1','410 E 21st'),(1234,247,'_shipping_address_2',''),(1235,247,'_shipping_city','Hays'),(1236,247,'_shipping_state','KS'),(1237,247,'_shipping_postcode','67601'),(1238,247,'_shipping_country','US'),(1239,247,'_order_currency','USD'),(1240,247,'_cart_discount','0'),(1241,247,'_cart_discount_tax','0'),(1242,247,'_order_shipping','0.99'),(1243,247,'_order_shipping_tax','0'),(1244,247,'_order_tax','1.23'),(1245,247,'_order_total','15.21'),(1246,247,'_order_version','3.3.5'),(1247,247,'_prices_include_tax','no'),(1248,247,'_billing_address_index','Debi Shoemaker Shupe  410 E 21st  Hays KS 67601 US debishupe0530@gmail.com '),(1249,247,'_shipping_address_index','Debi Shoemaker Shupe  410 E 21st  Hays KS 67601 US '),(1250,247,'_shipping_phone',''),(1251,247,'_paypal_status','completed'),(1252,247,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"2UT10605FE301535V\";s:6:\"amount\";s:5:\"15.21\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(1253,247,'_download_permissions_granted','yes'),(1254,247,'_recorded_sales','yes'),(1255,247,'_recorded_coupon_usage_counts','yes'),(1256,247,'_order_stock_reduced','yes'),(1257,248,'_order_key','wc_order_5b549f9c100be'),(1258,248,'_customer_user','0'),(1259,248,'_payment_method','ppec_paypal'),(1260,248,'_payment_method_title','PayPal Express Checkout'),(1261,248,'_transaction_id','2B1102253N8941539'),(1262,248,'_customer_ip_address','192.69.183.29'),(1263,248,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_4 like mac os x) applewebkit/605.1.15 (khtml, like gecko) version/11.0 mobile/15e148 safari/604.1'),(1264,248,'_created_via','checkout'),(1265,248,'_date_completed','1533719013'),(1266,248,'_completed_date','2018-08-08 09:03:33'),(1267,248,'_date_paid','1532272545'),(1268,248,'_paid_date','2018-07-22 15:15:45'),(1269,248,'_cart_hash','be842e1b752ca0579f795e7d7caa9cd3'),(1270,248,'_billing_first_name','Amelia'),(1271,248,'_billing_last_name','Hufford'),(1272,248,'_billing_company',''),(1273,248,'_billing_address_1','1092 New Amsterdam Dr.'),(1274,248,'_billing_address_2',''),(1275,248,'_billing_city','Greenwood'),(1276,248,'_billing_state','IN'),(1277,248,'_billing_postcode','46142'),(1278,248,'_billing_country','US'),(1279,248,'_billing_email','ahochrei@yahoo.com'),(1280,248,'_billing_phone',''),(1281,248,'_shipping_first_name','Amelia'),(1282,248,'_shipping_last_name','Hufford'),(1283,248,'_shipping_company',''),(1284,248,'_shipping_address_1','1092 New Amsterdam Dr.'),(1285,248,'_shipping_address_2',''),(1286,248,'_shipping_city','Greenwood'),(1287,248,'_shipping_state','IN'),(1288,248,'_shipping_postcode','46142'),(1289,248,'_shipping_country','US'),(1290,248,'_order_currency','USD'),(1291,248,'_cart_discount','0'),(1292,248,'_cart_discount_tax','0'),(1293,248,'_order_shipping','0.99'),(1294,248,'_order_shipping_tax','0'),(1295,248,'_order_tax','4.08'),(1297,248,'_order_version','3.3.5'),(1298,248,'_prices_include_tax','no'),(1299,248,'_billing_address_index','Amelia Hufford  1092 New Amsterdam Dr.  Greenwood IN 46142 US ahochrei@yahoo.com '),(1300,248,'_shipping_address_index','Amelia Hufford  1092 New Amsterdam Dr.  Greenwood IN 46142 US '),(1301,248,'_shipping_phone',''),(1302,248,'_paypal_status','completed'),(1303,248,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"2B1102253N8941539\";s:6:\"amount\";s:5:\"48.04\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(1304,248,'_download_permissions_granted','yes'),(1305,248,'_recorded_sales','yes'),(1306,248,'_recorded_coupon_usage_counts','yes'),(1307,248,'_order_stock_reduced','yes'),(1308,249,'_order_key','wc_order_5b62eaa2b4b51'),(1309,249,'_customer_user','2'),(1310,249,'_payment_method','ppec_paypal'),(1311,249,'_payment_method_title','PayPal Express Checkout'),(1312,249,'_transaction_id','9J863743PG4495019'),(1313,249,'_customer_ip_address','67.83.21.84'),(1314,249,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 11_4_1 like mac os x) applewebkit/605.1.15 (khtml, like gecko) version/11.0 mobile/15e148 safari/604.1'),(1315,249,'_created_via','checkout'),(1316,249,'_date_completed','1533719012'),(1317,249,'_completed_date','2018-08-08 09:03:32'),(1318,249,'_date_paid','1533209253'),(1319,249,'_paid_date','2018-08-02 11:27:33'),(1320,249,'_cart_hash','9b4c005008995527d64913b530557083'),(1321,249,'_billing_first_name','Lorraine'),(1322,249,'_billing_last_name','Lopez'),(1323,249,'_billing_company',''),(1324,249,'_billing_address_1','4904 Stonehedge Road'),(1325,249,'_billing_address_2',''),(1326,249,'_billing_city','Edison'),(1327,249,'_billing_state','NJ'),(1328,249,'_billing_postcode','08820'),(1329,249,'_billing_country','US'),(1330,249,'_billing_email','rain4904@yahoo.com'),(1331,249,'_billing_phone',''),(1332,249,'_shipping_first_name','Lorraine'),(1333,249,'_shipping_last_name','Lopez'),(1334,249,'_shipping_company',''),(1335,249,'_shipping_address_1','4904 Stonehedge Road'),(1336,249,'_shipping_address_2',''),(1337,249,'_shipping_city','Edison'),(1338,249,'_shipping_state','NJ'),(1339,249,'_shipping_postcode','08820'),(1340,249,'_shipping_country','US'),(1341,249,'_order_currency','USD'),(1342,249,'_cart_discount','0'),(1343,249,'_cart_discount_tax','0'),(1344,249,'_order_shipping','0.99'),(1345,249,'_order_shipping_tax','0'),(1346,249,'_order_tax','3.61'),(1347,249,'_order_total','42.57'),(1348,249,'_order_version','3.3.5'),(1349,249,'_prices_include_tax','no'),(1350,249,'_billing_address_index','Lorraine Lopez  4904 Stonehedge Road  Edison NJ 08820 US rain4904@yahoo.com '),(1351,249,'_shipping_address_index','Lorraine Lopez  4904 Stonehedge Road  Edison NJ 08820 US '),(1352,249,'_shipping_phone',''),(1353,249,'_paypal_status','completed'),(1354,249,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"9J863743PG4495019\";s:6:\"amount\";s:5:\"42.57\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(1355,249,'_download_permissions_granted','yes'),(1356,249,'_recorded_sales','yes'),(1357,249,'_recorded_coupon_usage_counts','yes'),(1358,249,'_order_stock_reduced','yes'),(1359,251,'_edit_lock','1533718824:1'),(1360,251,'_edit_last','1'),(1361,251,'discount_type','percent'),(1362,251,'coupon_amount','30'),(1363,251,'individual_use','no'),(1364,251,'product_ids',''),(1365,251,'exclude_product_ids',''),(1366,251,'usage_limit','0'),(1367,251,'usage_limit_per_user','0'),(1368,251,'limit_usage_to_x_items','0'),(1369,251,'usage_count','1'),(1370,251,'date_expires',NULL),(1371,251,'expiry_date',''),(1372,251,'free_shipping','no'),(1373,251,'product_categories','a:0:{}'),(1374,251,'exclude_product_categories','a:0:{}'),(1375,251,'exclude_sale_items','no'),(1376,251,'minimum_amount',''),(1377,251,'maximum_amount',''),(1378,251,'customer_email','a:0:{}'),(1381,252,'_order_key','wc_order_5b7d9b6d70258'),(1382,252,'_customer_user','0'),(1383,252,'_payment_method','ppec_paypal'),(1384,252,'_payment_method_title','PayPal Express Checkout'),(1385,252,'_transaction_id','0EB23354VL6470908'),(1386,252,'_customer_ip_address','73.175.49.220'),(1387,252,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10.12; rv:61.0) gecko/20100101 firefox/61.0'),(1388,252,'_created_via','checkout'),(1389,252,'_date_completed',''),(1390,252,'_completed_date',''),(1391,252,'_date_paid','1534958449'),(1392,252,'_paid_date','2018-08-22 17:20:49'),(1393,252,'_cart_hash','2c5f5e0ff7e17b8631fa85d09d25ea1d'),(1394,252,'_billing_first_name','Cheryl'),(1395,252,'_billing_last_name','Gariepy'),(1396,252,'_billing_company',''),(1397,252,'_billing_address_1','248 Ewe Road'),(1398,252,'_billing_address_2',''),(1399,252,'_billing_city','Mechanicsburg'),(1400,252,'_billing_state','PA'),(1401,252,'_billing_postcode','17055'),(1402,252,'_billing_country','US'),(1403,252,'_billing_email','jjg248@comcast.net'),(1404,252,'_billing_phone',''),(1405,252,'_shipping_first_name','Cheryl'),(1406,252,'_shipping_last_name','Gariepy'),(1407,252,'_shipping_company',''),(1408,252,'_shipping_address_1','248 Ewe Road'),(1409,252,'_shipping_address_2',''),(1410,252,'_shipping_city','Mechanicsburg'),(1411,252,'_shipping_state','PA'),(1412,252,'_shipping_postcode','17055'),(1413,252,'_shipping_country','US'),(1414,252,'_order_currency','USD'),(1415,252,'_cart_discount','0'),(1416,252,'_cart_discount_tax','0'),(1417,252,'_order_shipping','0.99'),(1418,252,'_order_shipping_tax','0'),(1419,252,'_order_tax','2.47'),(1420,252,'_order_total','29.44'),(1421,252,'_order_version','3.3.5'),(1422,252,'_prices_include_tax','no'),(1423,252,'_billing_address_index','Cheryl Gariepy  248 Ewe Road  Mechanicsburg PA 17055 US jjg248@comcast.net '),(1424,252,'_shipping_address_index','Cheryl Gariepy  248 Ewe Road  Mechanicsburg PA 17055 US '),(1425,252,'_shipping_phone',''),(1426,252,'_paypal_status','completed'),(1427,252,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"0EB23354VL6470908\";s:6:\"amount\";s:5:\"29.44\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(1428,252,'_download_permissions_granted','yes'),(1429,252,'_recorded_sales','yes'),(1430,252,'_recorded_coupon_usage_counts','yes'),(1431,252,'_order_stock_reduced','yes'),(1444,27,'_fl_builder_draft_back','a:56:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":66:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/27-2/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524819663000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"24932895fe\";s:6:\"delete\";s:10:\"d9f3499f58\";s:4:\"edit\";s:10:\"825d6b18f6\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";s:24:\"flrich1525166498007_text\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":115:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:3:\"189\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/05/20180430_231400-768x1024.jpg\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae17147ec81d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147ec81d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae17147eca88\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17147eca88\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae17147ec81d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:6:\"00b795\";s:10:\"text_color\";s:6:\"ffffff\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae2f4ceb18cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb18cc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2f4ceb1a5c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2f4ceb1905\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1905\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f4ceb18cc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:100;}}s:13:\"5ae2f4ceb194e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb194e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";i:20;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f4ceb1984\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1984\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":9:{s:4:\"icon\";s:25:\"ua-icon ua-icon-instagram\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae2f4ceb1a5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1a5c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f0f65c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0f65c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:6;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f17b81\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f17b81\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa143f18388\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f18388\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa143f17b81\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa143f0efc5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0efc5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa143f18388\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14610bd7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bd7a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5afa14610bdb3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bdb3\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610bde9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bde9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610be1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be1f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bd7a\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14610be55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be55\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5afa14610be8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:7:\"heading\";s:12:\"How It Works\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5afa14610bec1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bec1\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bef6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bef6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bf2c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf2c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bec1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610bf63\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf63\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bef6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14610bf98\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf98\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610bfce\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bfce\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610c004\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c004\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bf98\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14610c03a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c03a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bfce\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610c070\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c070\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:5;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:6:\"layout\";s:5:\"1-col\";}}s:13:\"5afa148bd3b5a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd3b5a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa148bdd99a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bdd99a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa148bd3b5a\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa148bde51c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bde51c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa148bdd99a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa148bd320e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd320e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa148bde51c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14b6e6179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e6179\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14b6e74b0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e74b0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14b6e6179\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14b6e5511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e5511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14b6e74b0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:6:\"layout\";s:12:\"product_page\";s:10:\"product_id\";s:0:\"\";s:13:\"parent_cat_id\";s:1:\"0\";s:11:\"cat_columns\";s:1:\"4\";s:15:\"products_source\";s:3:\"ids\";s:11:\"product_ids\";s:0:\"\";s:13:\"category_slug\";s:0:\"\";s:12:\"num_products\";s:2:\"12\";s:7:\"columns\";s:1:\"4\";s:7:\"orderby\";s:10:\"menu_order\";s:5:\"order\";s:3:\"ASC\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:11:\"woocommerce\";}}}'),(1445,27,'_uabb_converted','yes'),(1446,29,'_fl_builder_data_back','a:13:{s:13:\"5ae1a96ae7179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7179\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae71af\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71af\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7179\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae71e5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71e5\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:30;}}s:13:\"5ae1a96ae721b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae721b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"size\";s:2:\"70\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7287\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7287\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:196:\"<span style=\"color: #999999;\">Don’t hestiate to ask us something. Email us directly </span><span style=\"color: #999999;\"><span style=\"color: #808080;\"><b>Joewillett44@gmail.com</b></span></span>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae1a96ae72be\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae72be\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:12:\"mailto_email\";s:0:\"\";s:11:\"name_toggle\";s:4:\"show\";s:14:\"subject_toggle\";s:4:\"hide\";s:12:\"email_toggle\";s:4:\"show\";s:12:\"phone_toggle\";s:4:\"show\";s:14:\"success_action\";s:4:\"none\";s:15:\"success_message\";s:50:\"Thanks for your message! We’ll be in touch soon.\";s:11:\"success_url\";s:0:\"\";s:8:\"btn_text\";s:12:\"Send Message\";s:8:\"btn_icon\";s:11:\"fa fa-check\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:6:\"999999\";s:18:\"btn_bg_hover_color\";s:6:\"333333\";s:14:\"btn_text_color\";s:6:\"ffffff\";s:20:\"btn_text_hover_color\";s:6:\"FFFFFF\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:3:\"100\";s:21:\"btn_button_transition\";s:6:\"enable\";s:9:\"btn_width\";s:4:\"auto\";s:9:\"btn_align\";s:4:\"left\";s:13:\"btn_font_size\";s:2:\"15\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"3\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"50\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:12:\"contact-form\";s:18:\"success_url-search\";s:0:\"\";}}s:13:\"5ae1a96ae7360\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7360\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:2:\"25\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae73cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae73cc\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":8:{s:4:\"icon\";s:21:\"fa fa-linkedin-square\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:4:\"left\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae1a96ae7402\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7402\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:6:\"f7f7f7\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7438\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7438\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7402\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae746e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae746e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae7438\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1a96ae74a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae74a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae746e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:10:\"Contact Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"777777\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae7511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:20:\"LET’S GET IN TOUCH\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(1447,29,'_fl_builder_draft_back','a:13:{s:13:\"5ae1a96ae7179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7179\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae71af\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71af\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7179\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae71e5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae71e5\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:30;}}s:13:\"5ae1a96ae721b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae721b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae71af\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":42:{s:4:\"size\";s:2:\"70\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"1\";s:12:\"border_right\";s:1:\"1\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:11:\"medium_size\";s:7:\"default\";s:18:\"custom_medium_size\";s:3:\"100\";s:15:\"responsive_size\";s:7:\"default\";s:22:\"custom_responsive_size\";s:3:\"100\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7287\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7287\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:196:\"<span style=\"color: #999999;\">Don’t hestiate to ask us something. Email us directly </span><span style=\"color: #999999;\"><span style=\"color: #808080;\"><b>Joewillett44@gmail.com</b></span></span>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae1a96ae72be\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae72be\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:12:\"mailto_email\";s:0:\"\";s:11:\"name_toggle\";s:4:\"show\";s:14:\"subject_toggle\";s:4:\"hide\";s:12:\"email_toggle\";s:4:\"show\";s:12:\"phone_toggle\";s:4:\"show\";s:14:\"success_action\";s:4:\"none\";s:15:\"success_message\";s:50:\"Thanks for your message! We’ll be in touch soon.\";s:11:\"success_url\";s:0:\"\";s:8:\"btn_text\";s:12:\"Send Message\";s:8:\"btn_icon\";s:11:\"fa fa-check\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:6:\"999999\";s:18:\"btn_bg_hover_color\";s:6:\"333333\";s:14:\"btn_text_color\";s:6:\"ffffff\";s:20:\"btn_text_hover_color\";s:6:\"FFFFFF\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:3:\"100\";s:21:\"btn_button_transition\";s:6:\"enable\";s:9:\"btn_width\";s:4:\"auto\";s:9:\"btn_align\";s:4:\"left\";s:13:\"btn_font_size\";s:2:\"15\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"3\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"50\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:12:\"contact-form\";s:18:\"success_url-search\";s:0:\"\";}}s:13:\"5ae1a96ae7360\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7360\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:2:\"25\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae73cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae73cc\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae71e5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":8:{s:4:\"icon\";s:21:\"fa fa-linkedin-square\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:4:\"left\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae1a96ae7402\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7402\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":53:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:6:\"f7f7f7\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";}}s:13:\"5ae1a96ae7438\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7438\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae1a96ae7402\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae1a96ae746e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae746e\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1a96ae7438\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1a96ae74a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae74a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae746e\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:10:\"Contact Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"777777\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae1a96ae7511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1a96ae7511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae1a96ae721b\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":34:{s:7:\"heading\";s:20:\"LET’S GET IN TOUCH\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";s:2:\"20\";s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}}'),(1448,29,'_uabb_converted','yes'),(1449,85,'_fl_builder_data_back',''),(1450,85,'_fl_builder_draft_back',''),(1451,85,'_uabb_converted','yes'),(1452,1,'_fl_builder_data_back',''),(1453,1,'_fl_builder_draft_back',''),(1454,1,'_uabb_converted','yes'),(1455,28,'_fl_builder_data_back','a:18:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:8:\"About Us\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:269:\"That\'s us on the first day we received our initial shipment of Remote Ranglers and started assembling them. I\'m Joe the one on the left and my partner Troy, is on the right. He just got out of work at Honda. Just a couple of regular guys with high hopes and BIG DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1418:\"It all started with the fact that I have way too many remotes to keep track of. I kid you not, I have 8 remotes in just my bedroom! It seems that the more technology we get, the more remotes we have to operate them. Here\'s a list of my many remotes: TV, Soundbar, Firestick, light switch, air-conditioner, aroma diffuser and 2 fan remotes, one for me and one for my girl, because she doesn\'t like it too cold. I use these remotes everyday and keeping track of each one became such a major headache. They were either in the sheets, under the pillows, under the bed or under me, sucked in by my gravitational pull (as my girlfriend puts it.) I had to do something, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard. They are always nearby and ALWAYS together. I know I\'m not the only one with this problem, people have been losing remotes since they were invented. I realized I couldn\'t live without it. That\'s when I knew other people needed this product too. So, out of necessity I created the Remote Rangler! My buddy &amp; coworker Troy was one of my first customers. He loved it so much, that he offered to help me launch it, as his previous job experience related to our business well, and we became partners. Now, we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae81818cfb4f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cfb4f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae81818cfe8a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cfe8a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae81818cfb4f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae81818cf975\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cf975\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae81818cfe8a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:13:\"View Products\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00eacf\";s:14:\"bg_hover_color\";s:6:\"0023d3\";s:10:\"text_color\";s:6:\"0c0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:13:\"border_radius\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}}'),(1456,28,'_fl_builder_draft_back','a:18:{s:13:\"5ae180eab9e0b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e0b\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae180eab9e45\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e45\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"Our Team\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9e7c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9e7c\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9fc1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5ae180eab9eb2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9eb2\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eab9e0b\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":34:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"69\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:8:\"col_size\";s:2:\"45\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:69;s:5:\"title\";s:15:\"20180426_003915\";s:8:\"filename\";s:19:\"20180426_003915.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:4:\"link\";s:52:\"http://remoterangler.com/about/20180426_003915/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180426_003915\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:28;s:4:\"date\";i:1524728506000;s:8:\"modified\";i:1524728506000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"84809a89a2\";s:6:\"delete\";s:10:\"b460432b4f\";s:4:\"edit\";s:10:\"2cace6d5bf\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=69&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=28&action=edit\";s:15:\"uploadedToTitle\";s:8:\"About Us\";s:15:\"filesizeInBytes\";i:850908;s:21:\"filesizeHumanReadable\";s:6:\"831 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:218;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-300x218.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:744;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\";s:6:\"height\";i:1041;s:5:\"width\";i:1432;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae180eab9ee8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ee8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:269:\"That\'s us on the first day we received our initial shipment of Remote Ranglers and started assembling them. I\'m Joe the one on the left and my partner Troy, is on the right. He just got out of work at Honda. Just a couple of regular guys with high hopes and BIG DREAMS.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae180eab9f1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f1f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:8:\"About Us\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"10\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eab9f55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f55\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9f8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9f8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":9:{s:5:\"color\";s:6:\"f0f0f0\";s:6:\"height\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae180eab9fc1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9fc1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":20:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae180eab9ff8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eab9ff8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae180eaba02e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba02e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba0d0\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":7:{s:4:\"text\";s:132:\"<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\";s:8:\"col_size\";s:3:\"100\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae180eaba064\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba064\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9ff8\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";s:2:\"50\";}}s:13:\"5ae180eaba09a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba09a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":18:{s:7:\"heading\";s:9:\"Our Story\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:3:\"tag\";s:2:\"h3\";s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";s:2:\"24\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";s:2:\"24\";s:8:\"col_size\";s:2:\"50\";s:10:\"margin_top\";s:1:\"0\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:4:\"type\";s:7:\"heading\";}}s:13:\"5ae180eaba0d0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba0d0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae180eab9e7c\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae180eaba106\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae180eaba106\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae180eaba064\";s:8:\"position\";s:1:\"3\";s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:1418:\"It all started with the fact that I have way too many remotes to keep track of. I kid you not, I have 8 remotes in just my bedroom! It seems that the more technology we get, the more remotes we have to operate them. Here\'s a list of my many remotes: TV, Soundbar, Firestick, light switch, air-conditioner, aroma diffuser and 2 fan remotes, one for me and one for my girl, because she doesn\'t like it too cold. I use these remotes everyday and keeping track of each one became such a major headache. They were either in the sheets, under the pillows, under the bed or under me, sucked in by my gravitational pull (as my girlfriend puts it.) I had to do something, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard. They are always nearby and ALWAYS together. I know I\'m not the only one with this problem, people have been losing remotes since they were invented. I realized I couldn\'t live without it. That\'s when I knew other people needed this product too. So, out of necessity I created the Remote Rangler! My buddy &amp; coworker Troy was one of my first customers. He loved it so much, that he offered to help me launch it, as his previous job experience related to our business well, and we became partners. Now, we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:2:\"45\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:8:\"col_size\";s:2:\"50\";}}s:13:\"5ae81818cfb4f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cfb4f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae180eab9f55\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae81818cfe8a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cfe8a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae81818cfb4f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae81818cf975\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae81818cf975\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae81818cfe8a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:13:\"View Products\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"00eacf\";s:14:\"bg_hover_color\";s:6:\"0023d3\";s:10:\"text_color\";s:6:\"0c0002\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:0:\"\";s:7:\"padding\";s:0:\"\";s:13:\"border_radius\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}}'),(1457,28,'_uabb_converted','yes'),(1458,26,'_fl_builder_data_back',''),(1459,26,'_fl_builder_draft_back',''),(1460,26,'_uabb_converted','yes'),(1461,167,'_fl_builder_data_back',''),(1462,167,'_fl_builder_draft_back',''),(1463,167,'_uabb_converted','yes'),(1464,158,'_fl_builder_data_back',''),(1465,158,'_fl_builder_draft_back',''),(1466,158,'_uabb_converted','yes'),(1467,24,'_fl_builder_data_back',''),(1468,24,'_fl_builder_draft_back',''),(1469,24,'_uabb_converted','yes'),(1470,165,'_fl_builder_data_back',''),(1471,165,'_fl_builder_draft_back',''),(1472,165,'_uabb_converted','yes'),(1473,168,'_fl_builder_data_back',''),(1474,168,'_fl_builder_draft_back',''),(1475,168,'_uabb_converted','yes'),(1476,2,'_fl_builder_data_back','a:30:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":28:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:167:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/G-aqHkBC2-o?autoplay=1\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";s:10:\"poster_src\";s:0:\"\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"178\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:178;s:5:\"title\";s:15:\"20180430_015733\";s:8:\"filename\";s:19:\"20180430_015733.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:4:\"link\";s:57:\"http://remoterangler.com/howitworks/20180430_015733/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180430_015733\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:2;s:4:\"date\";i:1525081487000;s:8:\"modified\";i:1525081487000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 30, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"23cff0ccfe\";s:6:\"delete\";s:10:\"439f04e8f4\";s:4:\"edit\";s:10:\"46b1e8787d\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=178&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:61:\"http://remoterangler.com/wp-admin/post.php?post=2&action=edit\";s:15:\"uploadedToTitle\";s:12:\"How It Works\";s:15:\"filesizeInBytes\";i:2092955;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:168;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-168x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:572;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2d17082ffe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29e0ea9cb8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9cb8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29e0ea9e18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9e18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29e0ea9cb8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29e0ea9bf4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9bf4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae29e5a020ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e5a020ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0075a0\";s:14:\"bg_hover_color\";s:6:\"00e0b3\";s:10:\"text_color\";s:6:\"050001\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2d17082ffe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2d17082ffe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}}'),(1477,2,'_fl_builder_draft_back','a:30:{s:13:\"5ae294b420232\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420232\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5ae294b42044e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b42044e\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:6:\"layout\";s:5:\"1-col\";s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:5:\"class\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:14:\"padding_bottom\";s:1:\"0\";s:12:\"padding_left\";s:1:\"0\";s:13:\"padding_right\";s:1:\"0\";}}s:13:\"5ae294b420485\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae294b420485\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae294b420232\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29599d20f5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29599d20f5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":28:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:167:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/G-aqHkBC2-o?autoplay=1\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";s:10:\"poster_src\";s:0:\"\";}}s:13:\"5ae2988a7891d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a7891d\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2988a78b04\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b04\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae2988a78b3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2988a78b3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2988a7891d\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29897d6639\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29897d6639\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b04\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae298f59c451\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae298f59c451\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae294b420485\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:31:\"End The Search For The Remotes!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae29aa29e516\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa29e516\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae29aa2a0837\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0837\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29aa2a0978\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a0978\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aa2a09b6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aa2a09b6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29aa2a0837\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29aab7e3ad\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29aab7e3ad\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a0978\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"64\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524727267000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"b8b4c47f6f\";s:6:\"delete\";s:10:\"c3ace8f1cf\";s:4:\"edit\";s:10:\"e35d9836df\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29ad45b878\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45b878\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29ad45bb3d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb3d\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad45bb7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad45bb7a\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29ad45b878\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5ae29ad9bb76f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ad9bb76f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":35:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"178\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:178;s:5:\"title\";s:15:\"20180430_015733\";s:8:\"filename\";s:19:\"20180430_015733.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:4:\"link\";s:57:\"http://remoterangler.com/howitworks/20180430_015733/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180430_015733\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:2;s:4:\"date\";i:1525081487000;s:8:\"modified\";i:1525081487000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 30, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"23cff0ccfe\";s:6:\"delete\";s:10:\"439f04e8f4\";s:4:\"edit\";s:10:\"46b1e8787d\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=178&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:61:\"http://remoterangler.com/wp-admin/post.php?post=2&action=edit\";s:15:\"uploadedToTitle\";s:12:\"How It Works\";s:15:\"filesizeInBytes\";i:2092955;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:168;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-168x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:572;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg\";s:6:\"height\";i:3024;s:5:\"width\";i:1690;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}s:13:\"5ae29b1d026b5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d026b5\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae294b42044e\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29b1d02913\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b1d02913\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5ae29b229d50d\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b229d50d\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2d17082ffe\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae29b85a4a27\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29b85a4a27\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29b1d02913\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:188:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29be9aa1ed\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29be9aa1ed\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2988a78b3d\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29bfdee809\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29bfdee809\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29aa2a09b6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:144:\"<h2>Keeps Your Batteries Covered</h2>\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29ca353354\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29ca353354\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29ad45bb7a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:152:\"<h2>Hang Them Up Anywhere!</h2>\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5ae29e0ea9cb8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9cb8\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae29aa29e516\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5ae29e0ea9e18\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9e18\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29e0ea9cb8\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae29e0ea9bf4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e0ea9bf4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae29e5a020ee\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae29e5a020ee\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae29e0ea9e18\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":47:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0075a0\";s:14:\"bg_hover_color\";s:6:\"00e0b3\";s:10:\"text_color\";s:6:\"050001\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:8:\"gradient\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";i:16;s:7:\"padding\";i:12;s:13:\"border_radius\";i:4;s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2d17082ffe\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2d17082ffe\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae29b1d026b5\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}}'),(1478,2,'_uabb_converted','yes'),(1479,25,'_fl_builder_data_back',''),(1480,25,'_fl_builder_draft_back',''),(1481,25,'_uabb_converted','yes'),(1482,183,'_fl_builder_data_back',''),(1483,183,'_fl_builder_draft_back',''),(1484,183,'_uabb_converted','yes'),(1485,95,'_fl_builder_data_back',''),(1486,95,'_fl_builder_draft_back',''),(1487,95,'_uabb_converted','yes'),(1488,89,'_fl_builder_data_back',''),(1489,89,'_fl_builder_draft_back',''),(1490,89,'_uabb_converted','yes'),(1491,151,'_fl_builder_data_back',''),(1492,151,'_fl_builder_draft_back',''),(1493,151,'_uabb_converted','yes'),(1494,83,'_fl_builder_data_back',''),(1495,83,'_fl_builder_draft_back',''),(1496,83,'_uabb_converted','yes'),(1497,211,'_fl_builder_data_back',''),(1498,211,'_fl_builder_draft_back',''),(1499,211,'_uabb_converted','yes'),(1503,252,'_fl_builder_data_back',''),(1504,252,'_fl_builder_draft_back',''),(1505,252,'_uabb_converted','yes'),(1506,84,'_fl_builder_data_back',''),(1507,84,'_fl_builder_draft_back',''),(1508,84,'_uabb_converted','yes'),(1512,234,'_fl_builder_draft_back','a:0:{}'),(1511,234,'_fl_builder_data_back',''),(1513,234,'_uabb_converted','yes'),(1514,123,'_fl_builder_data_back',''),(1515,123,'_fl_builder_draft_back','a:0:{}'),(1516,123,'_uabb_converted','yes'),(1580,260,'_customer_user','0'),(1526,259,'_customer_user','0'),(1524,252,'_edit_lock','1537829076:1'),(1531,259,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/69.0.3497.100 safari/537.36'),(1532,259,'_created_via','checkout'),(1533,259,'_date_completed',''),(1534,259,'_completed_date',''),(1535,259,'_date_paid','1537829613'),(1536,259,'_paid_date','2018-09-24 22:53:33'),(1537,259,'_cart_hash','eaed2e5001b1be4a199cfe3ebe50cccf'),(1538,259,'_billing_first_name','Robert'),(1539,259,'_billing_last_name','Franco'),(1540,259,'_billing_company','BuKuMedia'),(1541,259,'_billing_address_1','11773 garber street'),(1542,259,'_billing_address_2',''),(1543,259,'_billing_city','sylmar'),(1544,259,'_billing_state','CA'),(1545,259,'_billing_postcode','91342'),(1546,259,'_billing_country','US'),(1547,259,'_billing_email','bukume@gmail.com'),(1548,259,'_billing_phone',''),(1549,259,'_shipping_first_name','Robert'),(1550,259,'_shipping_last_name','Franco'),(1551,259,'_shipping_company','BuKuMedia'),(1552,259,'_shipping_address_1','11773 garber street'),(1553,259,'_shipping_address_2',''),(1554,259,'_shipping_city','sylmar'),(1555,259,'_shipping_state','CA'),(1556,259,'_shipping_postcode','91342'),(1557,259,'_shipping_country','US'),(1558,259,'_order_currency','USD'),(1559,259,'_cart_discount','3.9'),(1560,259,'_cart_discount_tax','0.37'),(1561,259,'_order_shipping','0.99'),(1562,259,'_order_shipping_tax','0'),(1563,259,'_order_tax','0.86'),(1564,259,'_order_total','10.94'),(1565,259,'_order_version','3.4.5'),(1566,259,'_prices_include_tax','no'),(1567,259,'_billing_address_index','Robert Franco BuKuMedia 11773 garber street  sylmar CA 91342 US bukume@gmail.com '),(1568,259,'_shipping_address_index','Robert Franco BuKuMedia 11773 garber street  sylmar CA 91342 US '),(1569,259,'_shipping_phone',''),(1570,259,'_paypal_status','completed'),(1571,259,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"1RN43738FH4128137\";s:6:\"amount\";s:5:\"10.94\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(1572,259,'_download_permissions_granted','yes'),(1573,259,'_recorded_sales','yes'),(1574,259,'_recorded_coupon_usage_counts','yes'),(1575,251,'_used_by','bukume@gmail.com'),(1576,259,'_order_stock_reduced','yes'),(1579,260,'_order_key','wc_order_5bb2429e26d30'),(1581,260,'_payment_method','ppec_paypal'),(1582,260,'_payment_method_title','PayPal Checkout'),(1583,260,'_transaction_id','2V605668TH302672U'),(1584,260,'_customer_ip_address','68.8.247.95'),(1585,260,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_4 like mac os x) applewebkit/604.1.34 (khtml, like gecko) crios/69.0.3497.105 mobile/15e148 safari/604.1'),(1586,260,'_created_via','checkout'),(1587,260,'_date_completed',''),(1588,260,'_completed_date',''),(1589,260,'_date_paid','1538409122'),(1590,260,'_paid_date','2018-10-01 15:52:02'),(1591,260,'_cart_hash','82f821e1975cfece7a7594dee630a7c5'),(1592,260,'_billing_first_name','Taedra'),(1593,260,'_billing_last_name','Kogan'),(1594,260,'_billing_company',''),(1595,260,'_billing_address_1','908 Crest Dr'),(1596,260,'_billing_address_2',''),(1597,260,'_billing_city','Encinitas'),(1598,260,'_billing_state','CA'),(1599,260,'_billing_postcode','92024-4040'),(1600,260,'_billing_country','US'),(1601,260,'_billing_email','Taedra@gmail.com'),(1602,260,'_billing_phone',''),(1603,260,'_shipping_first_name','Taedra'),(1604,260,'_shipping_last_name','Kogan'),(1605,260,'_shipping_company',''),(1606,260,'_shipping_address_1','908 Crest Dr'),(1607,260,'_shipping_address_2',''),(1608,260,'_shipping_city','Encinitas'),(1609,260,'_shipping_state','CA'),(1610,260,'_shipping_postcode','92024-4040'),(1611,260,'_shipping_country','US'),(1612,260,'_order_currency','USD'),(1613,260,'_cart_discount','0'),(1614,260,'_cart_discount_tax','0'),(1615,260,'_order_shipping','0.99'),(1616,260,'_order_shipping_tax','0'),(1617,260,'_order_tax','2.25'),(1618,260,'_order_total','32.23'),(1619,260,'_order_version','3.4.5'),(1620,260,'_prices_include_tax','no'),(1621,260,'_billing_address_index','Taedra Kogan  908 Crest Dr  Encinitas CA 92024-4040 US Taedra@gmail.com '),(1622,260,'_shipping_address_index','Taedra Kogan  908 Crest Dr  Encinitas CA 92024-4040 US '),(1623,260,'_shipping_phone',''),(1624,260,'_paypal_status','completed'),(1625,260,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"2V605668TH302672U\";s:6:\"amount\";s:5:\"32.23\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(1626,260,'_download_permissions_granted','yes'),(1627,260,'_recorded_sales','yes'),(1628,260,'_recorded_coupon_usage_counts','yes'),(1629,260,'_order_stock_reduced','yes'),(1630,190,'_fl_builder_data_back',''),(1631,190,'_fl_builder_draft_back',''),(1632,190,'_uabb_converted','yes'),(1633,59,'_fl_builder_data_back',''),(1634,59,'_fl_builder_draft_back',''),(1635,59,'_uabb_converted','yes'),(1636,192,'_fl_builder_data_back',''),(1637,192,'_fl_builder_draft_back',''),(1638,192,'_uabb_converted','yes'),(1639,210,'_fl_builder_data_back',''),(1640,210,'_fl_builder_draft_back',''),(1641,210,'_uabb_converted','yes'),(1642,220,'_fl_builder_data_back','a:7:{s:13:\"5b1c3c04bb556\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bb556\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5b1c3c04bc784\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bc784\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c04bcc70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bcc70\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c04bc784\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c04bebd1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bebd1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c04bcc70\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:51:\"[playlist images=\"false\" ids=\"221,222,224,225,223\"]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5b1c3c4ab28fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab28fc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c4ab2c34\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab2c34\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c4ab28fc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c4ab26f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab26f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c4ab2c34\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:10:\"audio_type\";s:13:\"media_library\";s:6:\"audios\";a:5:{i:0;i:221;i:1;i:222;i:2;i:224;i:3;i:225;i:4;i:223;}s:4:\"link\";s:0:\"\";s:8:\"autoplay\";s:1:\"0\";s:4:\"loop\";s:1:\"0\";s:5:\"style\";s:5:\"light\";s:9:\"tracklist\";s:1:\"1\";s:12:\"tracknumbers\";s:1:\"1\";s:6:\"images\";s:1:\"0\";s:7:\"artists\";s:1:\"1\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"audio\";}}}'),(1643,220,'_fl_builder_draft_back','a:7:{s:13:\"5b1c3c04bb556\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bb556\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5b1c3c04bc784\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bc784\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c04bcc70\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bcc70\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c04bc784\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c04bebd1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c04bebd1\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c04bcc70\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:51:\"[playlist images=\"false\" ids=\"221,222,224,225,223\"]\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5b1c3c4ab28fc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab28fc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5b1c3c04bb556\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5b1c3c4ab2c34\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab2c34\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5b1c3c4ab28fc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5b1c3c4ab26f0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5b1c3c4ab26f0\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5b1c3c4ab2c34\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":30:{s:10:\"audio_type\";s:13:\"media_library\";s:6:\"audios\";a:5:{i:0;i:221;i:1;i:222;i:2;i:224;i:3;i:225;i:4;i:223;}s:4:\"link\";s:0:\"\";s:8:\"autoplay\";s:1:\"0\";s:4:\"loop\";s:1:\"0\";s:5:\"style\";s:5:\"light\";s:9:\"tracklist\";s:1:\"1\";s:12:\"tracknumbers\";s:1:\"1\";s:6:\"images\";s:1:\"0\";s:7:\"artists\";s:1:\"1\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"audio\";}}}'),(1644,220,'_uabb_converted','yes'),(1645,159,'_fl_builder_data_back',''),(1646,159,'_fl_builder_draft_back',''),(1647,159,'_uabb_converted','yes'),(1648,176,'_fl_builder_data_back',''),(1649,176,'_fl_builder_draft_back',''),(1650,176,'_uabb_converted','yes'),(1651,61,'_fl_builder_data_back',''),(1652,61,'_fl_builder_draft_back',''),(1653,61,'_uabb_converted','yes'),(1654,261,'_order_key','wc_order_5be0ba216f3dd'),(1655,261,'_customer_user','3'),(1656,261,'_payment_method','stripe'),(1657,261,'_payment_method_title','Credit Card (Stripe)'),(1658,261,'_transaction_id',''),(1659,261,'_customer_ip_address','76.122.35.71'),(1660,261,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 12_0_1 like mac os x) applewebkit/604.1.34 (khtml, like gecko) gsa/61.0.217752169 mobile/16a404 safari/604.1'),(1661,261,'_created_via','checkout'),(1662,261,'_date_completed',''),(1663,261,'_completed_date',''),(1664,261,'_date_paid',''),(1665,261,'_paid_date',''),(1666,261,'_cart_hash','fa27c5ef42d5fd40ea1eb13029632d70'),(1667,261,'_billing_first_name','Kimberley'),(1668,261,'_billing_last_name','Aden'),(1669,261,'_billing_company',''),(1670,261,'_billing_address_1','4090 Hodges Blvd'),(1671,261,'_billing_address_2','Apt 1301'),(1672,261,'_billing_city','Jacksonville'),(1673,261,'_billing_state','FL'),(1674,261,'_billing_postcode','32224'),(1675,261,'_billing_country','US'),(1676,261,'_billing_email','momazing@gmail.com'),(1677,261,'_billing_phone',''),(1678,261,'_shipping_first_name','Kimberley'),(1679,261,'_shipping_last_name','Aden'),(1680,261,'_shipping_company',''),(1681,261,'_shipping_address_1','4090 Hodges Blvd'),(1682,261,'_shipping_address_2','Apt 1301'),(1683,261,'_shipping_city','Jacksonville'),(1684,261,'_shipping_state','FL'),(1685,261,'_shipping_postcode','32224'),(1686,261,'_shipping_country','US'),(1687,261,'_order_currency','USD'),(1688,261,'_cart_discount','0'),(1689,261,'_cart_discount_tax','0'),(1690,261,'_order_shipping','0.99'),(1691,261,'_order_shipping_tax','0'),(1692,261,'_order_tax','0'),(1693,261,'_order_total','21.98'),(1694,261,'_order_version','3.4.5'),(1695,261,'_prices_include_tax','no'),(1696,261,'_billing_address_index','Kimberley Aden  4090 Hodges Blvd Apt 1301 Jacksonville FL 32224 US momazing@gmail.com '),(1697,261,'_shipping_address_index','Kimberley Aden  4090 Hodges Blvd Apt 1301 Jacksonville FL 32224 US '),(1698,261,'_shipping_phone',''),(1699,262,'_order_key','wc_order_5bea2416a80ed'),(1700,262,'_customer_user','0'),(1701,262,'_payment_method','ppec_paypal'),(1702,262,'_payment_method_title','PayPal Checkout'),(1703,262,'_transaction_id','2AR55014A1834563F'),(1704,262,'_customer_ip_address','104.15.56.37'),(1705,262,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/70.0.3538.102 safari/537.36'),(1706,262,'_created_via','checkout'),(1707,262,'_date_completed',''),(1708,262,'_completed_date',''),(1709,262,'_date_paid','1542071321'),(1710,262,'_paid_date','2018-11-13 01:08:41'),(1711,262,'_cart_hash','a60a8b991af47e92c1774dc900a8c474'),(1712,262,'_billing_first_name','Conley M'),(1713,262,'_billing_last_name','Elliott'),(1714,262,'_billing_company',''),(1715,262,'_billing_address_1','315 Pennsylvania Ave'),(1716,262,'_billing_address_2',''),(1717,262,'_billing_city','Oak Ridge'),(1718,262,'_billing_state','TN'),(1719,262,'_billing_postcode','37830-5116'),(1720,262,'_billing_country','US'),(1721,262,'_billing_email','tevya@mindspring.com'),(1722,262,'_billing_phone',''),(1723,262,'_shipping_first_name','Conley M'),(1724,262,'_shipping_last_name','Elliott'),(1725,262,'_shipping_company',''),(1726,262,'_shipping_address_1','315 Pennsylvania Ave'),(1727,262,'_shipping_address_2',''),(1728,262,'_shipping_city','Oak Ridge'),(1729,262,'_shipping_state','TN'),(1730,262,'_shipping_postcode','37830-5116'),(1731,262,'_shipping_country','US'),(1732,262,'_order_currency','USD'),(1733,262,'_cart_discount','0'),(1734,262,'_cart_discount_tax','0'),(1735,262,'_order_shipping','0.99'),(1736,262,'_order_shipping_tax','0'),(1737,262,'_order_tax','0'),(1738,262,'_order_total','13.98'),(1739,262,'_order_version','3.4.5'),(1740,262,'_prices_include_tax','no'),(1741,262,'_billing_address_index','Conley M Elliott  315 Pennsylvania Ave  Oak Ridge TN 37830-5116 US tevya@mindspring.com '),(1742,262,'_shipping_address_index','Conley M Elliott  315 Pennsylvania Ave  Oak Ridge TN 37830-5116 US '),(1743,262,'_shipping_phone',''),(1744,262,'_paypal_status','completed'),(1745,262,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"2AR55014A1834563F\";s:6:\"amount\";s:5:\"13.98\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(1746,262,'_download_permissions_granted','yes'),(1747,262,'_recorded_sales','yes'),(1748,262,'_recorded_coupon_usage_counts','yes'),(1749,262,'_order_stock_reduced','yes'),(1750,263,'_order_key','wc_order_5beacc4a042bf'),(1751,263,'_customer_user','4'),(1752,263,'_payment_method','stripe'),(1753,263,'_payment_method_title','Credit Card (Stripe)'),(1754,263,'_transaction_id',''),(1755,263,'_customer_ip_address','72.179.109.119'),(1756,263,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 12_1 like mac os x) applewebkit/604.1.34 (khtml, like gecko) gsa/62.1.220348572 mobile/16b92 safari/604.1'),(1757,263,'_created_via','checkout'),(1758,263,'_date_completed',''),(1759,263,'_completed_date',''),(1760,263,'_date_paid',''),(1761,263,'_paid_date',''),(1762,263,'_cart_hash','052d6608800a494f17620b484b8b4ba3'),(1763,263,'_billing_first_name','Jorge'),(1764,263,'_billing_last_name','Mckenzie'),(1765,263,'_billing_company',''),(1766,263,'_billing_address_1','311 Exeter Dr'),(1767,263,'_billing_address_2',''),(1768,263,'_billing_city','Laredo'),(1769,263,'_billing_state','TX'),(1770,263,'_billing_postcode','78045'),(1771,263,'_billing_country','US'),(1772,263,'_billing_email','jorgemckenzie@stx.rr.com'),(1773,263,'_billing_phone','9562516986'),(1774,263,'_shipping_first_name','Jorge'),(1775,263,'_shipping_last_name','Mckenzie'),(1776,263,'_shipping_company',''),(1777,263,'_shipping_address_1','311 Exeter Dr'),(1778,263,'_shipping_address_2',''),(1779,263,'_shipping_city','Laredo'),(1780,263,'_shipping_state','TX'),(1781,263,'_shipping_postcode','78045'),(1782,263,'_shipping_country','US'),(1783,263,'_order_currency','USD'),(1784,263,'_cart_discount','0'),(1785,263,'_cart_discount_tax','0'),(1786,263,'_order_shipping','0.99'),(1787,263,'_order_shipping_tax','0'),(1788,263,'_order_tax','0'),(1789,263,'_order_total','17.98'),(1790,263,'_order_version','3.4.5'),(1791,263,'_prices_include_tax','no'),(1792,263,'_billing_address_index','Jorge Mckenzie  311 Exeter Dr  Laredo TX 78045 US jorgemckenzie@stx.rr.com 9562516986'),(1793,263,'_shipping_address_index','Jorge Mckenzie  311 Exeter Dr  Laredo TX 78045 US 9562516986'),(1794,263,'_shipping_phone','9562516986'),(1803,265,'_customer_user','5'),(1796,263,'_fl_builder_data_back',''),(1797,263,'_fl_builder_draft_back',''),(1798,263,'_uabb_converted','yes'),(1799,261,'_edit_lock','1542328394:1'),(1802,265,'_order_key','wc_order_5c095d726d634'),(1804,265,'_payment_method','paypal'),(1805,265,'_payment_method_title','PayPal'),(1806,265,'_transaction_id','03J63072TV8052048'),(1807,265,'_customer_ip_address','184.54.157.183'),(1808,265,'_customer_user_agent','mozilla/5.0 (linux; android 8.0.0; sm-n950u1) applewebkit/537.36 (khtml, like gecko) chrome/71.0.3578.83 mobile safari/537.36'),(1809,265,'_created_via','checkout'),(1810,265,'_date_completed',''),(1811,265,'_completed_date',''),(1812,265,'_date_paid',''),(1813,265,'_paid_date',''),(1814,265,'_cart_hash','052d6608800a494f17620b484b8b4ba3'),(1815,265,'_billing_first_name','Karen'),(1816,265,'_billing_last_name','Tonucci'),(1817,265,'_billing_company',''),(1818,265,'_billing_address_1','5009 Argentine ct'),(1819,265,'_billing_address_2',''),(1820,265,'_billing_city','Cincinnati'),(1821,265,'_billing_state','OH'),(1822,265,'_billing_postcode','45244'),(1823,265,'_billing_country','US'),(1824,265,'_billing_email','ktonucci@gmail.com'),(1825,265,'_billing_phone',''),(1826,265,'_shipping_first_name','Karen'),(1827,265,'_shipping_last_name','Tonucci'),(1828,265,'_shipping_company',''),(1829,265,'_shipping_address_1','5009 Argentine ct'),(1830,265,'_shipping_address_2',''),(1831,265,'_shipping_city','Cincinnati'),(1832,265,'_shipping_state','OH'),(1833,265,'_shipping_postcode','45244'),(1834,265,'_shipping_country','US'),(1835,265,'_order_currency','USD'),(1836,265,'_cart_discount','0'),(1837,265,'_cart_discount_tax','0'),(1838,265,'_order_shipping','0.99'),(1839,265,'_order_shipping_tax','0'),(1840,265,'_order_tax','0'),(1841,265,'_order_total','17.98'),(1842,265,'_order_version','3.4.5'),(1843,265,'_prices_include_tax','no'),(1844,265,'_billing_address_index','Karen Tonucci  5009 Argentine ct  Cincinnati OH 45244 US ktonucci@gmail.com '),(1845,265,'_shipping_address_index','Karen Tonucci  5009 Argentine ct  Cincinnati OH 45244 US '),(1846,265,'_shipping_phone',''),(1847,265,'Payment type','instant'),(1848,265,'_paypal_status','pending'),(1849,265,'_recorded_sales','yes'),(1850,265,'_recorded_coupon_usage_counts','yes'),(1851,265,'_order_stock_reduced','yes'),(1964,269,'_customer_user','0'),(1853,265,'_fl_builder_data_back',''),(1854,265,'_fl_builder_draft_back',''),(1855,265,'_uabb_converted','yes'),(1856,265,'_edit_lock','1544170702:1'),(1857,267,'_order_key','wc_order_5c0ed4650b986'),(1858,267,'_customer_user','0'),(1859,267,'_payment_method','paypal'),(1860,267,'_payment_method_title','PayPal'),(1861,267,'_transaction_id','6CL999457E642162C'),(1862,267,'_customer_ip_address','174.53.164.215'),(1863,267,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; trident/7.0; rv:11.0) like gecko'),(1864,267,'_created_via','checkout'),(1865,267,'_date_completed',''),(1866,267,'_completed_date',''),(1867,267,'_date_paid','1544557938'),(1868,267,'_paid_date','2018-12-11 19:52:18'),(1869,267,'_cart_hash','fa27c5ef42d5fd40ea1eb13029632d70'),(1870,267,'_billing_first_name','Marthe'),(1871,267,'_billing_last_name','Jean-Marie'),(1872,267,'_billing_company',''),(1873,267,'_billing_address_1','1314 Marquette Ave'),(1874,267,'_billing_address_2','Apt 1301'),(1875,267,'_billing_city','Minneapolis'),(1876,267,'_billing_state','MN'),(1877,267,'_billing_postcode','55403'),(1878,267,'_billing_country','US'),(1879,267,'_billing_email','Paulmjm@gmail.com'),(1880,267,'_billing_phone',''),(1881,267,'_shipping_first_name','Marthe'),(1882,267,'_shipping_last_name','Jean-Marie'),(1883,267,'_shipping_company',''),(1884,267,'_shipping_address_1','1314 Marquette Ave'),(1885,267,'_shipping_address_2','Apt 1301'),(1886,267,'_shipping_city','Minneapolis'),(1887,267,'_shipping_state','MN'),(1888,267,'_shipping_postcode','55403'),(1889,267,'_shipping_country','US'),(1890,267,'_order_currency','USD'),(1891,267,'_cart_discount','0'),(1892,267,'_cart_discount_tax','0'),(1893,267,'_order_shipping','0.99'),(1894,267,'_order_shipping_tax','0'),(1895,267,'_order_tax','0'),(1896,267,'_order_total','21.98'),(1897,267,'_order_version','3.4.5'),(1898,267,'_prices_include_tax','no'),(1899,267,'_billing_address_index','Marthe Jean-Marie  1314 Marquette Ave Apt 1301 Minneapolis MN 55403 US Paulmjm@gmail.com '),(1900,267,'_shipping_address_index','Marthe Jean-Marie  1314 Marquette Ave Apt 1301 Minneapolis MN 55403 US '),(1901,267,'_shipping_phone',''),(1902,267,'_fl_builder_data_back',''),(1903,267,'_fl_builder_draft_back',''),(1904,267,'_uabb_converted','yes'),(1905,267,'_edit_lock','1544731030:1'),(1906,268,'_order_key','wc_order_5c0eda36ddb68'),(1907,268,'_customer_user','1'),(1908,268,'_payment_method','paypal'),(1909,268,'_payment_method_title','PayPal'),(1910,268,'_transaction_id',''),(1911,268,'_customer_ip_address','75.82.208.72'),(1912,268,'_customer_user_agent','mozilla/5.0 (windows nt 6.3; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/71.0.3578.80 safari/537.36'),(1913,268,'_created_via','checkout'),(1914,268,'_date_completed',''),(1915,268,'_completed_date',''),(1916,268,'_date_paid',''),(1917,268,'_paid_date',''),(1918,268,'_cart_hash','1044083ba271db752beee03cc559b87b'),(1919,268,'_billing_first_name','joseph'),(1920,268,'_billing_last_name','Willett'),(1921,268,'_billing_company','The Remote Controller'),(1922,268,'_billing_address_1','15903 Prairie ave'),(1923,268,'_billing_address_2','apt 4'),(1924,268,'_billing_city','Lawndale'),(1925,268,'_billing_state','CA'),(1926,268,'_billing_postcode','90260'),(1927,268,'_billing_country','US'),(1928,268,'_billing_email','joewillett44@gmail.com'),(1929,268,'_billing_phone','6616748245'),(1930,268,'_shipping_first_name','joseph'),(1931,268,'_shipping_last_name','Willett'),(1932,268,'_shipping_company','The Remote Controller'),(1933,268,'_shipping_address_1','15903 Prairie ave'),(1934,268,'_shipping_address_2','apt 4'),(1935,268,'_shipping_city','Lawndale'),(1936,268,'_shipping_state','CA'),(1937,268,'_shipping_postcode','90260'),(1938,268,'_shipping_country','US'),(1939,268,'_order_currency','USD'),(1940,268,'_cart_discount','0'),(1941,268,'_cart_discount_tax','0'),(1942,268,'_order_shipping','0.99'),(1943,268,'_order_shipping_tax','0'),(1944,268,'_order_tax','4.08'),(1945,268,'_order_total','48.04'),(1946,268,'_order_version','3.4.5'),(1947,268,'_prices_include_tax','no'),(1948,268,'_billing_address_index','joseph Willett The Remote Controller 15903 Prairie ave apt 4 Lawndale CA 90260 US joewillett44@gmail.com 6616748245'),(1949,268,'_shipping_address_index','joseph Willett The Remote Controller 15903 Prairie ave apt 4 Lawndale CA 90260 US 6616748245'),(1950,268,'_shipping_phone','6616748245'),(1951,267,'Payment type','instant'),(1952,267,'_paypal_status','completed'),(1953,267,'_download_permissions_granted','yes'),(1954,267,'_recorded_sales','yes'),(1955,267,'_recorded_coupon_usage_counts','yes'),(1956,267,'_order_stock_reduced','yes'),(1957,267,'PayPal Transaction Fee','0.94'),(1958,268,'_fl_builder_data_back',''),(1959,268,'_fl_builder_draft_back',''),(1960,268,'_uabb_converted','yes'),(1963,269,'_order_key','wc_order_5c1a6b817f656'),(1965,269,'_payment_method','paypal'),(1966,269,'_payment_method_title','PayPal'),(1967,269,'_transaction_id',''),(1968,269,'_customer_ip_address','47.195.254.45'),(1969,269,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/71.0.3578.98 safari/537.36'),(1970,269,'_created_via','checkout'),(1971,269,'_date_completed',''),(1972,269,'_completed_date',''),(1973,269,'_date_paid',''),(1974,269,'_paid_date',''),(1975,269,'_cart_hash','a60a8b991af47e92c1774dc900a8c474'),(1976,269,'_billing_first_name','TC'),(1977,269,'_billing_last_name','Sandford'),(1978,269,'_billing_company',''),(1979,269,'_billing_address_1','5634 Monte Rosso Rd'),(1980,269,'_billing_address_2',''),(1981,269,'_billing_city','Sarasota, FL'),(1982,269,'_billing_state','FL'),(1983,269,'_billing_postcode','34243'),(1984,269,'_billing_country','US'),(1985,269,'_billing_email','tcsandford@hotmail.com'),(1986,269,'_billing_phone','9413121397'),(1987,269,'_shipping_first_name','B.'),(1988,269,'_shipping_last_name','Villanueva'),(1989,269,'_shipping_company',''),(1990,269,'_shipping_address_1','2126 Whitesmith Dr.'),(1991,269,'_shipping_address_2',''),(1992,269,'_shipping_city','Apex'),(1993,269,'_shipping_state','NC'),(1994,269,'_shipping_postcode','27502'),(1995,269,'_shipping_country','US'),(1996,269,'_order_currency','USD'),(1997,269,'_cart_discount','0'),(1998,269,'_cart_discount_tax','0'),(1999,269,'_order_shipping','0.99'),(2000,269,'_order_shipping_tax','0'),(2001,269,'_order_tax','0'),(2002,269,'_order_total','13.98'),(2003,269,'_order_version','3.4.5'),(2004,269,'_prices_include_tax','no'),(2005,269,'_billing_address_index','TC Sandford  5634 Monte Rosso Rd  Sarasota, FL FL 34243 US tcsandford@hotmail.com 9413121397'),(2006,269,'_shipping_address_index','B. Villanueva  2126 Whitesmith Dr.  Apex NC 27502 US 9413121397'),(2007,269,'_shipping_phone',''),(2008,270,'_order_key','wc_order_5c1a6cc24a79a'),(2009,270,'_customer_user','0'),(2010,270,'_payment_method','paypal'),(2011,270,'_payment_method_title','PayPal'),(2012,270,'_transaction_id','0TV55914XW414500Y'),(2013,270,'_customer_ip_address','47.195.254.45'),(2014,270,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/71.0.3578.98 safari/537.36'),(2015,270,'_created_via','checkout'),(2016,270,'_date_completed',''),(2017,270,'_completed_date',''),(2018,270,'_date_paid','1545235848'),(2019,270,'_paid_date','2018-12-19 16:10:48'),(2020,270,'_cart_hash','a60a8b991af47e92c1774dc900a8c474'),(2021,270,'_billing_first_name','TC'),(2022,270,'_billing_last_name','Sandford'),(2023,270,'_billing_company',''),(2024,270,'_billing_address_1','5634 Monte Rosso Rd'),(2025,270,'_billing_address_2',''),(2026,270,'_billing_city','Sarasota, FL'),(2027,270,'_billing_state','FL'),(2028,270,'_billing_postcode','34243'),(2029,270,'_billing_country','US'),(2030,270,'_billing_email','tcsandford@hotmail.com'),(2031,270,'_billing_phone','9413121397'),(2032,270,'_shipping_first_name','B.'),(2033,270,'_shipping_last_name','Villanueva'),(2034,270,'_shipping_company',''),(2035,270,'_shipping_address_1','2126 Whitesmith Dr.'),(2036,270,'_shipping_address_2',''),(2037,270,'_shipping_city','Apex'),(2038,270,'_shipping_state','NC'),(2039,270,'_shipping_postcode','27502'),(2040,270,'_shipping_country','US'),(2041,270,'_order_currency','USD'),(2042,270,'_cart_discount','0'),(2043,270,'_cart_discount_tax','0'),(2044,270,'_order_shipping','0.99'),(2045,270,'_order_shipping_tax','0'),(2046,270,'_order_tax','0'),(2047,270,'_order_total','13.98'),(2048,270,'_order_version','3.4.5'),(2049,270,'_prices_include_tax','no'),(2050,270,'_billing_address_index','TC Sandford  5634 Monte Rosso Rd  Sarasota, FL FL 34243 US tcsandford@hotmail.com 9413121397'),(2051,270,'_shipping_address_index','B. Villanueva  2126 Whitesmith Dr.  Apex NC 27502 US 9413121397'),(2052,270,'_shipping_phone',''),(2053,270,'Payment type','instant'),(2054,270,'_paypal_status','completed'),(2055,270,'_download_permissions_granted','yes'),(2056,270,'_recorded_sales','yes'),(2057,270,'_recorded_coupon_usage_counts','yes'),(2058,270,'_order_stock_reduced','yes'),(2059,270,'PayPal Transaction Fee','0.71'),(2060,271,'_order_key','wc_order_5c1a6e4870563'),(2061,271,'_customer_user','0'),(2062,271,'_payment_method','paypal'),(2063,271,'_payment_method_title','PayPal'),(2064,271,'_transaction_id','8SU010101K4905402'),(2065,271,'_customer_ip_address','47.195.254.45'),(2066,271,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/71.0.3578.98 safari/537.36'),(2067,271,'_created_via','checkout'),(2068,271,'_date_completed',''),(2069,271,'_completed_date',''),(2070,271,'_date_paid','1545236113'),(2071,271,'_paid_date','2018-12-19 16:15:13'),(2072,271,'_cart_hash','d95229e6843d1334d76c7cf86dbde87d'),(2073,271,'_billing_first_name','TC'),(2074,271,'_billing_last_name','Sandford'),(2075,271,'_billing_company',''),(2076,271,'_billing_address_1','5634 Monte Rosso Rd'),(2077,271,'_billing_address_2',''),(2078,271,'_billing_city','Sarasota, FL'),(2079,271,'_billing_state','FL'),(2080,271,'_billing_postcode','34243'),(2081,271,'_billing_country','US'),(2082,271,'_billing_email','tcsandford@hotmail.com'),(2083,271,'_billing_phone','9413121397'),(2084,271,'_shipping_first_name','TC'),(2085,271,'_shipping_last_name','Sandford'),(2086,271,'_shipping_company',''),(2087,271,'_shipping_address_1','5634 Monte Rosso Rd'),(2088,271,'_shipping_address_2',''),(2089,271,'_shipping_city','Sarasota, FL'),(2090,271,'_shipping_state','FL'),(2091,271,'_shipping_postcode','34243'),(2092,271,'_shipping_country','US'),(2093,271,'_order_currency','USD'),(2094,271,'_cart_discount','0'),(2095,271,'_cart_discount_tax','0'),(2096,271,'_order_shipping','0.99'),(2097,271,'_order_shipping_tax','0'),(2098,271,'_order_tax','0'),(2099,271,'_order_total','26.97'),(2100,271,'_order_version','3.4.5'),(2101,271,'_prices_include_tax','no'),(2102,271,'_billing_address_index','TC Sandford  5634 Monte Rosso Rd  Sarasota, FL FL 34243 US tcsandford@hotmail.com 9413121397'),(2103,271,'_shipping_address_index','TC Sandford  5634 Monte Rosso Rd  Sarasota, FL FL 34243 US 9413121397'),(2104,271,'_shipping_phone','9413121397'),(2105,271,'Payment type','instant'),(2106,271,'_paypal_status','completed'),(2107,271,'_download_permissions_granted','yes'),(2108,271,'_recorded_sales','yes'),(2109,271,'_recorded_coupon_usage_counts','yes'),(2110,271,'_order_stock_reduced','yes'),(2111,271,'PayPal Transaction Fee','1.08'),(2232,277,'_fl_builder_draft_back',''),(2113,271,'_fl_builder_data_back',''),(2114,271,'_fl_builder_draft_back',''),(2115,271,'_uabb_converted','yes'),(2116,271,'_edit_lock','1545253716:1'),(2301,283,'_customer_user','0'),(2302,283,'_payment_method','paypal'),(2303,283,'_payment_method_title','PayPal'),(2304,283,'_transaction_id','3X542157S98053743'),(2305,283,'_customer_ip_address','12.38.190.9'),(2306,283,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko'),(2126,27,'_yoast_wpseo_opengraph-image-id','53'),(2127,276,'_order_key','wc_order_5c1f320e0850f'),(2128,276,'_customer_user','0'),(2129,276,'_payment_method','paypal'),(2130,276,'_payment_method_title','PayPal'),(2131,276,'_transaction_id',''),(2132,276,'_customer_ip_address','75.41.25.7'),(2133,276,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(2134,276,'_created_via','checkout'),(2135,276,'_date_completed',''),(2136,276,'_completed_date',''),(2137,276,'_date_paid',''),(2138,276,'_paid_date',''),(2139,276,'_cart_hash','fa27c5ef42d5fd40ea1eb13029632d70'),(2140,276,'_billing_first_name','Samantha'),(2141,276,'_billing_last_name','Sturwold'),(2142,276,'_billing_company',''),(2143,276,'_billing_address_1','5343 W Windsor Ave'),(2144,276,'_billing_address_2',''),(2145,276,'_billing_city','Chicago'),(2146,276,'_billing_state','IL'),(2147,276,'_billing_postcode','60630'),(2148,276,'_billing_country','US'),(2149,276,'_billing_email','samantha.sturwold@gmail.com'),(2150,276,'_billing_phone',''),(2151,276,'_shipping_first_name','Samantha'),(2152,276,'_shipping_last_name','Sturwold'),(2153,276,'_shipping_company',''),(2154,276,'_shipping_address_1','5343 W Windsor Ave'),(2155,276,'_shipping_address_2',''),(2156,276,'_shipping_city','Chicago'),(2157,276,'_shipping_state','IL'),(2158,276,'_shipping_postcode','60630'),(2159,276,'_shipping_country','US'),(2160,276,'_order_currency','USD'),(2161,276,'_cart_discount','0'),(2162,276,'_cart_discount_tax','0'),(2163,276,'_order_shipping','0.99'),(2164,276,'_order_shipping_tax','0'),(2165,276,'_order_tax','0'),(2166,276,'_order_total','21.98'),(2167,276,'_order_version','3.5.2'),(2168,276,'_prices_include_tax','no'),(2169,276,'_billing_address_index','Samantha Sturwold  5343 W Windsor Ave  Chicago IL 60630 US samantha.sturwold@gmail.com '),(2170,276,'_shipping_address_index','Samantha Sturwold  5343 W Windsor Ave  Chicago IL 60630 US '),(2171,276,'_shipping_phone',''),(2172,277,'_order_key','wc_order_5c24158f64d37'),(2173,277,'_customer_user','0'),(2174,277,'_payment_method','paypal'),(2175,277,'_payment_method_title','PayPal'),(2176,277,'_transaction_id','0RC69342XG685214K'),(2177,277,'_customer_ip_address','174.221.129.86'),(2178,277,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(2179,277,'_created_via','checkout'),(2180,277,'_date_completed',''),(2181,277,'_completed_date',''),(2182,277,'_date_paid','1545872752'),(2183,277,'_paid_date','2018-12-27 01:05:52'),(2184,277,'_cart_hash','54044a375740d1f58b92500a8875748c'),(2185,277,'_billing_first_name','Samantha'),(2186,277,'_billing_last_name','Sturwold'),(2187,277,'_billing_company',''),(2188,277,'_billing_address_1','5343 W Windsor Ave'),(2189,277,'_billing_address_2',''),(2190,277,'_billing_city','Chicago'),(2191,277,'_billing_state','IL'),(2192,277,'_billing_postcode','60630'),(2193,277,'_billing_country','US'),(2194,277,'_billing_email','samantha.sturwold@gmail.com'),(2195,277,'_billing_phone',''),(2196,277,'_shipping_first_name','Samantha'),(2197,277,'_shipping_last_name','Sturwold'),(2198,277,'_shipping_company',''),(2199,277,'_shipping_address_1','5343 W Windsor Ave'),(2200,277,'_shipping_address_2',''),(2201,277,'_shipping_city','Chicago'),(2202,277,'_shipping_state','IL'),(2203,277,'_shipping_postcode','60630'),(2204,277,'_shipping_country','US'),(2205,277,'_order_currency','USD'),(2206,277,'_cart_discount','0'),(2207,277,'_cart_discount_tax','0'),(2208,277,'_order_shipping','0.99'),(2209,277,'_order_shipping_tax','0'),(2210,277,'_order_tax','0'),(2211,277,'_order_total','29.98'),(2212,277,'_order_version','3.5.2'),(2213,277,'_prices_include_tax','no'),(2214,277,'_billing_address_index','Samantha Sturwold  5343 W Windsor Ave  Chicago IL 60630 US samantha.sturwold@gmail.com '),(2215,277,'_shipping_address_index','Samantha Sturwold  5343 W Windsor Ave  Chicago IL 60630 US '),(2216,277,'_shipping_phone',''),(2217,277,'Payment type','instant'),(2218,277,'_paypal_status','completed'),(2219,277,'_download_permissions_granted','yes'),(2220,277,'_recorded_sales','yes'),(2221,277,'_recorded_coupon_usage_counts','yes'),(2222,277,'_order_stock_reduced','yes'),(2223,277,'PayPal Transaction Fee','1.17'),(2225,278,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(2226,279,'_fl_builder_data','a:54:{s:13:\"5adface21f2a8\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2a8\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f496\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":63:{s:5:\"title\";s:12:\"How It Works\";s:4:\"text\";s:99:\"Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"55\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:36:\"http://remoterangler.com/howitworks/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:55;s:5:\"title\";s:15:\"20180308_203557\";s:8:\"filename\";s:19:\"20180308_203557.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_203557/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_203557\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524724823000;s:8:\"modified\";i:1524724823000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"41e187c3b0\";s:6:\"delete\";s:10:\"7a9b0f43f0\";s:4:\"edit\";s:10:\"4b253a6c05\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=55&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:3140297;s:21:\"filesizeHumanReadable\";s:4:\"3 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:160;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-160x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:547;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg\";s:6:\"height\";i:4020;s:5:\"width\";i:2146;s:11:\"orientation\";s:8:\"portrait\";}}}s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f2e2\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f2e2\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f350\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f319\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f319\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f4cc\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":64:{s:5:\"title\";s:8:\"About Us\";s:4:\"text\";s:152:\"Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"57\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:30:\"http://remoterangler.com/about\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:57;s:5:\"title\";s:15:\"20180309_010105\";s:8:\"filename\";s:19:\"20180309_010105.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180309_010105/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180309_010105\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524725682000;s:8:\"modified\";i:1524725682000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"4d25fff225\";s:6:\"delete\";s:10:\"5c09098e74\";s:4:\"edit\";s:10:\"10a7717a92\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=57&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:698977;s:21:\"filesizeHumanReadable\";s:6:\"683 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:185;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-185x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:632;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\";s:6:\"height\";i:1904;s:5:\"width\";i:1176;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";}}s:13:\"5adface21f350\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f350\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";N;}s:13:\"5adface21f429\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f429\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f45f\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5adface21f45f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f45f\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";N;}s:13:\"5adface21f496\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f496\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f4cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f4cc\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f501\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f501\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5adface21f537\";s:8:\"position\";s:1:\"2\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:33.3299999999999982946974341757595539093017578125;}}s:13:\"5adface21f537\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f537\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f6d1\";s:8:\"position\";s:1:\"1\";s:8:\"settings\";N;}s:13:\"5adface21f56e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f56e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f501\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":66:{s:5:\"title\";s:8:\"Products\";s:4:\"text\";s:167:\"Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\";s:5:\"align\";s:4:\"left\";s:9:\"title_tag\";s:2:\"h3\";s:10:\"title_size\";s:7:\"default\";s:17:\"title_custom_size\";i:24;s:10:\"image_type\";s:5:\"photo\";s:5:\"photo\";s:2:\"64\";s:10:\"photo_crop\";s:0:\"\";s:14:\"photo_position\";s:11:\"above-title\";s:4:\"icon\";s:0:\"\";s:13:\"icon_position\";s:10:\"left-title\";s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"icon_bg_color\";s:0:\"\";s:19:\"icon_bg_hover_color\";s:0:\"\";s:7:\"icon_3d\";s:1:\"0\";s:9:\"icon_size\";s:2:\"30\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:8:\"cta_type\";s:4:\"link\";s:8:\"cta_text\";s:9:\"Read More\";s:8:\"btn_icon\";s:0:\"\";s:17:\"btn_icon_position\";s:6:\"before\";s:18:\"btn_icon_animation\";s:7:\"disable\";s:12:\"btn_bg_color\";s:0:\"\";s:18:\"btn_bg_hover_color\";s:0:\"\";s:14:\"btn_text_color\";s:0:\"\";s:20:\"btn_text_hover_color\";s:0:\"\";s:9:\"btn_style\";s:4:\"flat\";s:15:\"btn_border_size\";s:1:\"2\";s:14:\"btn_bg_opacity\";s:1:\"0\";s:20:\"btn_bg_hover_opacity\";s:1:\"0\";s:21:\"btn_button_transition\";s:7:\"disable\";s:9:\"btn_width\";s:4:\"auto\";s:13:\"btn_font_size\";s:2:\"14\";s:11:\"btn_padding\";s:2:\"10\";s:17:\"btn_border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"callout\";s:6:\"btn_3d\";s:1:\"0\";s:9:\"photo_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:10:\"photo_data\";O:8:\"stdClass\":33:{s:2:\"id\";i:64;s:5:\"title\";s:15:\"20180405_220150\";s:8:\"filename\";s:19:\"20180405_220150.jpg\";s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/27-2/20180405_220150/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_220150\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524727267000;s:8:\"modified\";i:1524819663000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"24932895fe\";s:6:\"delete\";s:10:\"d9f3499f58\";s:4:\"edit\";s:10:\"825d6b18f6\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=64&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:2615051;s:21:\"filesizeHumanReadable\";s:4:\"2 MB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:275;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-275x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:939;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:71:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\";s:6:\"height\";i:2674;s:5:\"width\";i:2452;s:11:\"orientation\";s:8:\"portrait\";}}}s:8:\"col_size\";d:33.3299999999999982946974341757595539093017578125;s:11:\"link-search\";s:0:\"\";s:24:\"flrich1525166498007_text\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5adface21f5a5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f5a5\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":115:{s:5:\"width\";s:4:\"full\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:6:\"ffffff\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"photo\";s:8:\"bg_image\";s:3:\"189\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center bottom\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:7:\"contain\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:0:\"\";s:28:\"separator_shape_width_medium\";s:0:\"\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:0:\"\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:0:\"\";s:32:\"bot_separator_shape_width_medium\";s:0:\"\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:0:\"\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:3:\"120\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:3:\"180\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:12:\"bg_image_src\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/05/20180430_231400-768x1024.jpg\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";}}s:13:\"5adface21f6d1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5adface21f6d1\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:2;s:8:\"settings\";O:8:\"stdClass\":39:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:10:\"text_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:8:\"bg_video\";s:0:\"\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:1:\"2\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:10:\"border_top\";s:1:\"1\";s:13:\"border_bottom\";s:1:\"1\";s:11:\"border_left\";s:1:\"0\";s:12:\"border_right\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:11:\"padding_top\";s:2:\"40\";s:14:\"padding_bottom\";s:2:\"40\";s:12:\"padding_left\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";}}s:13:\"5ae1710d9a92f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1710d9a92f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae1714f19ae6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae1714f19ae6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae1714f19ae6\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5adface21f5a5\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae172a9f064f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae172a9f064f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":48:{s:4:\"text\";s:8:\"Buy Now!\";s:4:\"icon\";s:29:\"ua-icon ua-icon-shopping-cart\";s:13:\"icon_position\";s:6:\"before\";s:14:\"icon_animation\";s:7:\"disable\";s:12:\"click_action\";s:4:\"link\";s:4:\"link\";s:34:\"http://remoterangler.com/products/\";s:11:\"link_target\";s:5:\"_self\";s:13:\"link_nofollow\";s:2:\"no\";s:21:\"lightbox_content_type\";s:4:\"html\";s:21:\"lightbox_content_html\";s:0:\"\";s:19:\"lightbox_video_link\";s:0:\"\";s:8:\"bg_color\";s:6:\"0071f2\";s:14:\"bg_hover_color\";s:6:\"00b795\";s:10:\"text_color\";s:6:\"ffffff\";s:16:\"text_hover_color\";s:0:\"\";s:5:\"style\";s:4:\"flat\";s:11:\"border_size\";i:2;s:10:\"bg_opacity\";i:0;s:16:\"bg_hover_opacity\";i:0;s:17:\"button_transition\";s:7:\"disable\";s:5:\"width\";s:4:\"auto\";s:12:\"custom_width\";s:3:\"200\";s:5:\"align\";s:6:\"center\";s:9:\"font_size\";s:2:\"16\";s:7:\"padding\";s:2:\"12\";s:13:\"border_radius\";s:1:\"4\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:6:\"button\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5ae175359c0e6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae175359c0e6\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"115\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:115;s:5:\"title\";s:31:\"secure_checkout_now_large_large\";s:8:\"filename\";s:35:\"secure_checkout_now_large_large.png\";s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:4:\"link\";s:67:\"http://remoterangler.com/home/secure_checkout_now_large_large/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:31:\"secure_checkout_now_large_large\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524739470000;s:8:\"modified\";i:1524739470000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:9:\"image/png\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:3:\"png\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"52c4de3859\";s:6:\"delete\";s:10:\"2d040ac6cb\";s:4:\"edit\";s:10:\"3ca3d91fcd\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=115&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:87317;s:21:\"filesizeHumanReadable\";s:5:\"85 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":3:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-150x150.png\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:203;s:5:\"width\";i:300;s:3:\"url\";s:95:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large-300x203.png\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:87:\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\";s:6:\"height\";i:324;s:5:\"width\";i:480;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5ae17886d2f9f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae17886d2f9f\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f429\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae178c7bcd69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bcd69\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5ae178c7c0d47\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0d47\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae178c7bcd69\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae178c7c0ea3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7c0ea3\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae178c7c0d47\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5ae178c7bca79\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae178c7bca79\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae178c7c0ea3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:46:\"Tired Of Losing The Remotes? Now There\'s Hope!\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h2\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2dd26983ca\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2dd26983ca\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5adface21f2e2\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5ae2f4ceb18cc\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb18cc\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5ae2f4ceb1a5c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5ae2f4ceb1905\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1905\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5ae2f4ceb18cc\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:100;}}s:13:\"5ae2f4ceb194e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb194e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":42:{s:7:\"heading\";s:15:\"CONNECT WITH US\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:6:\"333333\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h3\";s:4:\"font\";a:2:{s:6:\"family\";s:10:\"Montserrat\";s:6:\"weight\";s:3:\"700\";}s:9:\"font_size\";s:6:\"custom\";s:16:\"custom_font_size\";i:20;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"2\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:3:\"-20\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";}}s:13:\"5ae2f4ceb1984\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1984\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5ae2f4ceb1905\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":29:{s:5:\"icons\";a:2:{i:0;O:8:\"stdClass\":9:{s:1:\"0\";s:0:\"\";s:4:\"icon\";s:23:\"fa fa-facebook-official\";s:4:\"link\";s:38:\"https://www.facebook.com/RemoteRangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"1200d8\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";}i:1;O:8:\"stdClass\":9:{s:4:\"icon\";s:25:\"ua-icon ua-icon-instagram\";s:4:\"link\";s:39:\"https://www.instagram.com/remoterangler\";s:11:\"link_target\";s:6:\"_blank\";s:5:\"color\";s:6:\"fc2e00\";s:11:\"hover_color\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:5:\"color\";s:6:\"bababa\";s:11:\"hover_color\";s:6:\"333333\";s:8:\"bg_color\";s:0:\"\";s:14:\"bg_hover_color\";s:0:\"\";s:7:\"three_d\";s:1:\"0\";s:4:\"size\";i:60;s:7:\"spacing\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:1:\"0\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:10:\"icon-group\";}}s:13:\"5ae2f4ceb1a5c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5ae2f4ceb1a5c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:3;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:1:\"1\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:1:\"0\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:1:\"1\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:1:\"0\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f0f65c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0f65c\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:6;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa143f17b81\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f17b81\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa143f18388\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f18388\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa143f17b81\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa143f0efc5\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa143f0efc5\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa143f18388\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14610bd7a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bd7a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:0;s:8:\"settings\";N;}s:13:\"5afa14610bdb3\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bdb3\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:2;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610bde9\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bde9\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa14610c070\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14610be1f\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be1f\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bd7a\";s:8:\"position\";s:1:\"0\";s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14610be55\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be55\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":27:{s:10:\"video_type\";s:5:\"embed\";s:5:\"video\";s:0:\"\";s:10:\"video_webm\";s:0:\"\";s:6:\"poster\";s:0:\"\";s:8:\"autoplay\";s:1:\"1\";s:4:\"loop\";s:1:\"0\";s:10:\"embed_code\";s:162:\"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"video\";}}s:13:\"5afa14610be8b\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610be8b\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610be1f\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":43:{s:7:\"heading\";s:12:\"How It Works\";s:4:\"link\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:5:\"color\";s:0:\"\";s:9:\"alignment\";s:6:\"center\";s:3:\"tag\";s:2:\"h1\";s:4:\"font\";a:2:{s:6:\"family\";s:7:\"Default\";s:6:\"weight\";s:7:\"default\";}s:9:\"font_size\";s:7:\"default\";s:16:\"custom_font_size\";i:24;s:11:\"line_height\";s:7:\"default\";s:18:\"custom_line_height\";s:3:\"1.4\";s:14:\"letter_spacing\";s:7:\"default\";s:21:\"custom_letter_spacing\";s:1:\"0\";s:11:\"r_alignment\";s:7:\"default\";s:18:\"r_custom_alignment\";s:6:\"center\";s:11:\"r_font_size\";s:7:\"default\";s:18:\"r_custom_font_size\";i:24;s:13:\"r_line_height\";s:7:\"default\";s:20:\"r_custom_line_height\";s:3:\"1.4\";s:16:\"r_letter_spacing\";s:7:\"default\";s:23:\"r_custom_letter_spacing\";s:1:\"0\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:7:\"heading\";s:11:\"link-search\";s:0:\"\";s:21:\"as_values_link-search\";s:0:\"\";}}s:13:\"5afa14610bec1\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bec1\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bef6\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bef6\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bdb3\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:50;}}s:13:\"5afa14610bf2c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf2c\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bec1\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"61\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"data\";O:8:\"stdClass\":31:{s:2:\"id\";i:61;s:5:\"title\";s:15:\"20180405_230244\";s:8:\"filename\";s:34:\"20180405_230244-e1524797515525.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:4:\"link\";s:41:\"http://remoterangler.com/20180405_230244/\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180405_230244\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:0;s:4:\"date\";i:1524726573000;s:8:\"modified\";i:1524797696000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 26, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"708e2cebb7\";s:6:\"delete\";s:10:\"75847b7717\";s:4:\"edit\";s:10:\"6a1dfa4b60\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=61&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:15:\"filesizeInBytes\";i:864160;s:21:\"filesizeHumanReadable\";s:6:\"844 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":1:{s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\";s:6:\"height\";i:2964;s:5:\"width\";i:3015;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610bf63\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf63\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bef6\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":21:{s:4:\"text\";s:156:\"<h2>Universal - Fits All Remotes</h2>\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5afa14610bf98\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bf98\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610bfce\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610bfce\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14610bde9\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";d:50;}}s:13:\"5afa14610c004\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c004\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bf98\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":22:{s:4:\"text\";s:185:\"<h2>Attach Them all</h2>\nThis portable remote control caddy is one of a kind. Attach all your remotes to the Remote Rangler like a key ring so you can keep them alltogther in one place.\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";s:24:\"flrich1545873758020_text\";s:0:\"\";}}s:13:\"5afa14610c03a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c03a\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14610bfce\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":33:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:2:\"53\";s:9:\"photo_url\";s:0:\"\";s:4:\"crop\";s:0:\"\";s:5:\"align\";s:6:\"center\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:11:\"link_target\";s:5:\"_self\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:9:\"photo_src\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:53;s:5:\"title\";s:15:\"20180308_200016\";s:8:\"filename\";s:34:\"20180308_200016-e1524609034633.jpg\";s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:4:\"link\";s:51:\"http://remoterangler.com/home/20180308_200016/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:15:\"20180308_200016\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:27;s:4:\"date\";i:1524608947000;s:8:\"modified\";i:1524609120000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:14:\"April 24, 2018\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"5e10a6241a\";s:6:\"delete\";s:10:\"49950f6aaa\";s:4:\"edit\";s:10:\"ab0c64a233\";}s:8:\"editLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=53&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:62:\"http://remoterangler.com/wp-admin/post.php?post=27&action=edit\";s:15:\"uploadedToTitle\";s:10:\"(no title)\";s:15:\"filesizeInBytes\";i:283424;s:21:\"filesizeHumanReadable\";s:6:\"277 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:232;s:5:\"width\";i:300;s:3:\"url\";s:79:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-300x232.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:791;s:5:\"width\";i:1024;s:3:\"url\";s:80:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-1024x791.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:86:\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\";s:6:\"height\";i:1544;s:5:\"width\";i:2000;s:11:\"orientation\";s:9:\"landscape\";}}}s:15:\"link_url-search\";s:0:\"\";}}s:13:\"5afa14610c070\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14610c070\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:5;s:8:\"settings\";O:8:\"stdClass\":113:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:1:\"0\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:1:\"0\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:1:\"0\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:1:\"0\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:1:\"0\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";s:6:\"layout\";s:5:\"1-col\";}}s:13:\"5afa148bd3b5a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd3b5a\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:4;s:8:\"settings\";O:8:\"stdClass\":112:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:11:\"full_height\";s:7:\"default\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:11:\"bg_position\";s:13:\"center center\";s:13:\"bg_attachment\";s:6:\"scroll\";s:7:\"bg_size\";s:5:\"cover\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:8:\"bg_color\";s:0:\"\";s:10:\"bg_opacity\";s:3:\"100\";s:16:\"bg_overlay_color\";s:0:\"\";s:18:\"bg_overlay_opacity\";s:2:\"50\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:11:\"border_type\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:14:\"border_opacity\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"border_top\";s:0:\"\";s:17:\"border_top_medium\";s:0:\"\";s:21:\"border_top_responsive\";s:0:\"\";s:12:\"border_right\";s:0:\"\";s:19:\"border_right_medium\";s:0:\"\";s:23:\"border_right_responsive\";s:0:\"\";s:13:\"border_bottom\";s:0:\"\";s:20:\"border_bottom_medium\";s:0:\"\";s:24:\"border_bottom_responsive\";s:0:\"\";s:11:\"border_left\";s:0:\"\";s:18:\"border_left_medium\";s:0:\"\";s:22:\"border_left_responsive\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:18:\"padding_top_medium\";s:0:\"\";s:22:\"padding_top_responsive\";s:0:\"\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5afa148bdd99a\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bdd99a\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa148bd3b5a\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5afa148bde51c\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bde51c\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa148bdd99a\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa148bd320e\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa148bd320e\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa148bde51c\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":27:{s:5:\"color\";s:6:\"cccccc\";s:7:\"opacity\";s:3:\"100\";s:6:\"height\";i:2;s:5:\"width\";s:4:\"full\";s:12:\"custom_width\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:5:\"style\";s:5:\"solid\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"separator\";}}s:13:\"5afa14b6e6179\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e6179\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5afa143f0f65c\";s:8:\"position\";i:1;s:8:\"settings\";s:0:\"\";}s:13:\"5afa14b6e74b0\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e74b0\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5afa14b6e6179\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":1:{s:4:\"size\";i:100;}}s:13:\"5afa14b6e5511\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5afa14b6e5511\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5afa14b6e74b0\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":31:{s:6:\"layout\";s:12:\"product_page\";s:10:\"product_id\";s:0:\"\";s:13:\"parent_cat_id\";s:1:\"0\";s:11:\"cat_columns\";s:1:\"4\";s:15:\"products_source\";s:3:\"ids\";s:11:\"product_ids\";s:0:\"\";s:13:\"category_slug\";s:0:\"\";s:12:\"num_products\";s:2:\"12\";s:7:\"columns\";s:1:\"4\";s:7:\"orderby\";s:10:\"menu_order\";s:5:\"order\";s:3:\"ASC\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:15:\"animation_delay\";s:3:\"0.0\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:17:\"margin_top_medium\";s:0:\"\";s:21:\"margin_top_responsive\";s:0:\"\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:11:\"woocommerce\";}}}'),(2227,279,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(2231,277,'_fl_builder_data_back',''),(2290,281,'_fl_builder_draft_back',''),(2233,277,'_uabb_converted','yes'),(2234,281,'_order_key','wc_order_5c2aca223a20e'),(2235,281,'_customer_user','0'),(2236,281,'_payment_method','paypal'),(2237,281,'_payment_method_title','PayPal'),(2238,281,'_transaction_id','71294503UD530270M'),(2239,281,'_customer_ip_address','99.89.8.162'),(2240,281,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(2241,281,'_created_via','checkout'),(2242,281,'_date_completed',''),(2243,281,'_completed_date',''),(2244,281,'_date_paid','1546308278'),(2245,281,'_paid_date','2019-01-01 02:04:38'),(2246,281,'_cart_hash','6aca205f76132dea87bfb7fda8b51a7b'),(2247,281,'_billing_first_name','Scott'),(2248,281,'_billing_last_name','Wilson'),(2249,281,'_billing_company',''),(2250,281,'_billing_address_1','5359 N. Tisha Ave.'),(2251,281,'_billing_address_2',''),(2252,281,'_billing_city','Fresno'),(2253,281,'_billing_state','CA'),(2254,281,'_billing_postcode','93723'),(2255,281,'_billing_country','US'),(2256,281,'_billing_email','scottguywilson@gmail.com'),(2257,281,'_billing_phone',''),(2258,281,'_shipping_first_name','Scott'),(2259,281,'_shipping_last_name','Wilson'),(2260,281,'_shipping_company',''),(2261,281,'_shipping_address_1','5359 N. Tisha Ave.'),(2262,281,'_shipping_address_2',''),(2263,281,'_shipping_city','Fresno'),(2264,281,'_shipping_state','CA'),(2265,281,'_shipping_postcode','93723'),(2266,281,'_shipping_country','US'),(2267,281,'_order_currency','USD'),(2268,281,'_cart_discount','0'),(2269,281,'_cart_discount_tax','0'),(2270,281,'_order_shipping','0.99'),(2271,281,'_order_shipping_tax','0'),(2272,281,'_order_tax','1.23'),(2273,281,'_order_total','15.21'),(2274,281,'_order_version','3.5.2'),(2275,281,'_prices_include_tax','no'),(2276,281,'_billing_address_index','Scott Wilson  5359 N. Tisha Ave.  Fresno CA 93723 US scottguywilson@gmail.com '),(2277,281,'_shipping_address_index','Scott Wilson  5359 N. Tisha Ave.  Fresno CA 93723 US '),(2278,281,'_shipping_phone',''),(2279,281,'Payment type','instant'),(2280,281,'_paypal_status','completed'),(2281,281,'_download_permissions_granted','yes'),(2282,281,'_recorded_sales','yes'),(2283,281,'_recorded_coupon_usage_counts','yes'),(2284,281,'_order_stock_reduced','yes'),(2285,281,'PayPal Transaction Fee','0.74'),(2289,281,'_fl_builder_data_back',''),(2291,281,'_uabb_converted','yes'),(2300,283,'_order_key','wc_order_5c59ddb5dd7d6'),(2307,283,'_created_via','checkout'),(2308,283,'_date_completed',''),(2309,283,'_completed_date',''),(2310,283,'_date_paid','1549393583'),(2311,283,'_paid_date','2019-02-05 19:06:23'),(2312,283,'_cart_hash','8738ef425a2b83905ece31388b35ab97'),(2313,283,'_billing_first_name','CHRISTINA'),(2314,283,'_billing_last_name','ALLEN'),(2315,283,'_billing_company',''),(2316,283,'_billing_address_1','950 RUTLAND ROAD'),(2317,283,'_billing_address_2','424'),(2318,283,'_billing_city','BROOKLYN'),(2319,283,'_billing_state','NY'),(2320,283,'_billing_postcode','11212'),(2321,283,'_billing_country','US'),(2322,283,'_billing_email','CHRISTINA.ALLEN@UEGWORLDWIDE.COM'),(2323,283,'_billing_phone','7189268837'),(2324,283,'_shipping_first_name','CHRISTINA'),(2325,283,'_shipping_last_name','ALLEN'),(2326,283,'_shipping_company','UEG'),(2327,283,'_shipping_address_1','155 6TH AVENUE, 3RD FLOOR'),(2328,283,'_shipping_address_2',''),(2329,283,'_shipping_city','NEW YORK'),(2330,283,'_shipping_state','NY'),(2331,283,'_shipping_postcode','10013'),(2332,283,'_shipping_country','US'),(2333,283,'_order_currency','USD'),(2334,283,'_cart_discount','0'),(2335,283,'_cart_discount_tax','0'),(2336,283,'_order_shipping','0.99'),(2337,283,'_order_shipping_tax','0'),(2338,283,'_order_tax','1.99'),(2339,283,'_order_total','23.97'),(2340,283,'_order_version','3.5.2'),(2341,283,'_prices_include_tax','no'),(2342,283,'_billing_address_index','CHRISTINA ALLEN  950 RUTLAND ROAD 424 BROOKLYN NY 11212 US CHRISTINA.ALLEN@UEGWORLDWIDE.COM 7189268837'),(2343,283,'_shipping_address_index','CHRISTINA ALLEN UEG 155 6TH AVENUE, 3RD FLOOR  NEW YORK NY 10013 US 7189268837'),(2344,283,'_shipping_phone','7189268837'),(2345,283,'Payment type','instant'),(2346,283,'_paypal_status','completed'),(2347,283,'_download_permissions_granted','yes'),(2348,283,'_recorded_sales','yes'),(2349,283,'_recorded_coupon_usage_counts','yes'),(2350,283,'_order_stock_reduced','yes'),(2351,283,'PayPal Transaction Fee','1.00'),(2356,285,'_customer_user','0'),(2355,285,'_order_key','wc_order_5c8ef3270092c'),(2357,285,'_payment_method','paypal'),(2358,285,'_payment_method_title','PayPal'),(2359,285,'_transaction_id','19U40624WE071903X'),(2360,285,'_customer_ip_address','99.163.28.26'),(2361,285,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36'),(2362,285,'_created_via','checkout'),(2363,285,'_date_completed',''),(2364,285,'_completed_date',''),(2365,285,'_date_paid','1552872401'),(2366,285,'_paid_date','2019-03-18 01:26:41'),(2367,285,'_cart_hash','f07b8463ab9e71af9dc7579f6032590e'),(2368,285,'_billing_first_name','Linda'),(2369,285,'_billing_last_name','Vietze'),(2370,285,'_billing_company','1969'),(2371,285,'_billing_address_1','221 N Walnut Street'),(2372,285,'_billing_address_2','Apt F'),(2373,285,'_billing_city','Olathe'),(2374,285,'_billing_state','KS'),(2375,285,'_billing_postcode','66061'),(2376,285,'_billing_country','US'),(2377,285,'_billing_email','shannonkdennis@gmail.com'),(2378,285,'_billing_phone','9132198841'),(2379,285,'_shipping_first_name','Linda'),(2380,285,'_shipping_last_name','Vietze'),(2381,285,'_shipping_company','1969'),(2382,285,'_shipping_address_1','221 N Walnut Street'),(2383,285,'_shipping_address_2','Apt F'),(2384,285,'_shipping_city','Olathe'),(2385,285,'_shipping_state','KS'),(2386,285,'_shipping_postcode','66061'),(2387,285,'_shipping_country','US'),(2388,285,'_order_currency','USD'),(2389,285,'_cart_discount','0'),(2390,285,'_cart_discount_tax','0'),(2391,285,'_order_shipping','0.99'),(2392,285,'_order_shipping_tax','0'),(2393,285,'_order_tax','2.47'),(2394,285,'_order_total','29.44'),(2395,285,'_order_version','3.5.2'),(2396,285,'_prices_include_tax','no'),(2397,285,'_billing_address_index','Linda Vietze 1969 221 N Walnut Street Apt F Olathe KS 66061 US shannonkdennis@gmail.com 9132198841'),(2398,285,'_shipping_address_index','Linda Vietze 1969 221 N Walnut Street Apt F Olathe KS 66061 US 9132198841'),(2399,285,'_shipping_phone','9132198841'),(2400,285,'Payment type','instant'),(2401,285,'_paypal_status','completed'),(2402,285,'_download_permissions_granted','yes'),(2403,285,'_recorded_sales','yes'),(2404,285,'_recorded_coupon_usage_counts','yes'),(2405,285,'_order_stock_reduced','yes'),(2406,285,'PayPal Transaction Fee','1.15'),(2407,286,'_order_key','wc_order_5c901ac202cb6'),(2408,286,'_customer_user','0'),(2409,286,'_payment_method','paypal'),(2410,286,'_payment_method_title','PayPal'),(2411,286,'_transaction_id','1TB90995N64532909'),(2412,286,'_customer_ip_address','63.142.229.131'),(2413,286,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-N950U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36'),(2414,286,'_created_via','checkout'),(2415,286,'_date_completed',''),(2416,286,'_completed_date',''),(2417,286,'_date_paid','1552947969'),(2418,286,'_paid_date','2019-03-18 22:26:09'),(2419,286,'_cart_hash','8738ef425a2b83905ece31388b35ab97'),(2420,286,'_billing_first_name','Karen'),(2421,286,'_billing_last_name','DOLLISON'),(2422,286,'_billing_company',''),(2423,286,'_billing_address_1','PO Box 494'),(2424,286,'_billing_address_2',''),(2425,286,'_billing_city','Courtland'),(2426,286,'_billing_state','CA'),(2427,286,'_billing_postcode','95615-0494'),(2428,286,'_billing_country','US'),(2429,286,'_billing_email','kidollison1@gmail.com'),(2430,286,'_billing_phone','9165015924'),(2431,286,'_shipping_first_name','Karen'),(2432,286,'_shipping_last_name','DOLLISON'),(2433,286,'_shipping_company',''),(2434,286,'_shipping_address_1','PO Box 494'),(2435,286,'_shipping_address_2',''),(2436,286,'_shipping_city','Courtland'),(2437,286,'_shipping_state','CA'),(2438,286,'_shipping_postcode','95615-0494'),(2439,286,'_shipping_country','US'),(2440,286,'_order_currency','USD'),(2441,286,'_cart_discount','0'),(2442,286,'_cart_discount_tax','0'),(2443,286,'_order_shipping','0.99'),(2444,286,'_order_shipping_tax','0'),(2445,286,'_order_tax','1.99'),(2446,286,'_order_total','23.97'),(2447,286,'_order_version','3.5.2'),(2448,286,'_prices_include_tax','no'),(2449,286,'_billing_address_index','Karen DOLLISON  PO Box 494  Courtland CA 95615-0494 US kidollison1@gmail.com 9165015924'),(2450,286,'_shipping_address_index','Karen DOLLISON  PO Box 494  Courtland CA 95615-0494 US 9165015924'),(2451,286,'_shipping_phone','9165015924'),(2452,286,'Payment type','instant'),(2453,286,'_paypal_status','completed'),(2454,286,'_download_permissions_granted','yes'),(2455,286,'_recorded_sales','yes'),(2456,286,'_recorded_coupon_usage_counts','yes'),(2457,286,'_order_stock_reduced','yes'),(2458,286,'PayPal Transaction Fee','1.00'),(2523,289,'_customer_user','0'),(2460,286,'_fl_builder_data_back',''),(2461,286,'_fl_builder_draft_back',''),(2462,286,'_uabb_converted','yes'),(2463,286,'_edit_lock','1553106885:1'),(2464,288,'_order_key','wc_order_5c9a99244ba88'),(2465,288,'_customer_user','0'),(2466,288,'_payment_method','paypal'),(2467,288,'_payment_method_title','PayPal'),(2468,288,'_transaction_id','8HY337296S653724H'),(2469,288,'_customer_ip_address','75.58.24.65'),(2470,288,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/601.4.4 (KHTML, like Gecko) Version/9.0.3 Safari/601.4.4'),(2471,288,'_created_via','checkout'),(2472,288,'_date_completed',''),(2473,288,'_completed_date',''),(2474,288,'_date_paid','1553718290'),(2475,288,'_paid_date','2019-03-27 20:24:50'),(2476,288,'_cart_hash','6aca205f76132dea87bfb7fda8b51a7b'),(2477,288,'_billing_first_name','Dave'),(2478,288,'_billing_last_name','Stettner'),(2479,288,'_billing_company',''),(2480,288,'_billing_address_1','6803 Cooper Ave.'),(2481,288,'_billing_address_2',''),(2482,288,'_billing_city','Middleton'),(2483,288,'_billing_state','WI'),(2484,288,'_billing_postcode','53562'),(2485,288,'_billing_country','US'),(2486,288,'_billing_email','thestettner@gmail.com'),(2487,288,'_billing_phone',''),(2488,288,'_shipping_first_name','Judy'),(2489,288,'_shipping_last_name','Stettner'),(2490,288,'_shipping_company',''),(2491,288,'_shipping_address_1','1142 West Grant Dr.'),(2492,288,'_shipping_address_2',''),(2493,288,'_shipping_city','Des Plaines'),(2494,288,'_shipping_state','IL'),(2495,288,'_shipping_postcode','60016'),(2496,288,'_shipping_country','US'),(2497,288,'_order_currency','USD'),(2498,288,'_cart_discount','0'),(2499,288,'_cart_discount_tax','0'),(2500,288,'_order_shipping','0.99'),(2501,288,'_order_shipping_tax','0'),(2502,288,'_order_tax','1.23'),(2503,288,'_order_total','15.21'),(2504,288,'_order_version','3.5.2'),(2505,288,'_prices_include_tax','no'),(2506,288,'_billing_address_index','Dave Stettner  6803 Cooper Ave.  Middleton WI 53562 US thestettner@gmail.com '),(2507,288,'_shipping_address_index','Judy Stettner  1142 West Grant Dr.  Des Plaines IL 60016 US '),(2508,288,'_shipping_phone',''),(2509,288,'Payment type','instant'),(2510,288,'_paypal_status','completed'),(2511,288,'_download_permissions_granted','yes'),(2512,288,'_recorded_sales','yes'),(2513,288,'_recorded_coupon_usage_counts','yes'),(2514,288,'_order_stock_reduced','yes'),(2515,288,'PayPal Transaction Fee','0.74'),(2516,288,'_fl_builder_data_back',''),(2517,288,'_fl_builder_draft_back',''),(2518,288,'_uabb_converted','yes'),(2519,288,'_edit_lock','1553747235:1'),(2522,289,'_order_key','wc_order_5ca16f3a08e7e'),(2524,289,'_payment_method','ppec_paypal'),(2525,289,'_payment_method_title','PayPal Checkout'),(2526,289,'_transaction_id','48U28041B5060270D'),(2527,289,'_customer_ip_address','24.52.165.184'),(2528,289,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36'),(2529,289,'_created_via','checkout'),(2530,289,'_date_completed',''),(2531,289,'_completed_date',''),(2532,289,'_date_paid','1554083644'),(2533,289,'_paid_date','2019-04-01 01:54:04'),(2534,289,'_cart_hash','6aca205f76132dea87bfb7fda8b51a7b'),(2535,289,'_billing_first_name','kelly'),(2536,289,'_billing_last_name','hardwick'),(2537,289,'_billing_company',''),(2538,289,'_billing_address_1','16 taylor ct.'),(2539,289,'_billing_address_2',''),(2540,289,'_billing_city','beardstown'),(2541,289,'_billing_state','IL'),(2542,289,'_billing_postcode','62618'),(2543,289,'_billing_country','US'),(2544,289,'_billing_email','kkhardwick@outlook.com'),(2545,289,'_billing_phone',''),(2546,289,'_shipping_first_name','kelly'),(2547,289,'_shipping_last_name','hardwick'),(2548,289,'_shipping_company',''),(2549,289,'_shipping_address_1','16 taylor ct.'),(2550,289,'_shipping_address_2',''),(2551,289,'_shipping_city','beardstown'),(2552,289,'_shipping_state','IL'),(2553,289,'_shipping_postcode','62618'),(2554,289,'_shipping_country','US'),(2555,289,'_order_currency','USD'),(2556,289,'_cart_discount','0'),(2557,289,'_cart_discount_tax','0'),(2558,289,'_order_shipping','0.99'),(2559,289,'_order_shipping_tax','0'),(2560,289,'_order_tax','1.23'),(2561,289,'_order_total','15.21'),(2562,289,'_order_version','3.5.2'),(2563,289,'_prices_include_tax','no'),(2564,289,'_billing_address_index','kelly hardwick  16 taylor ct.  beardstown IL 62618 US kkhardwick@outlook.com '),(2565,289,'_shipping_address_index','kelly hardwick  16 taylor ct.  beardstown IL 62618 US '),(2566,289,'_shipping_phone',''),(2567,289,'_paypal_status','completed'),(2568,289,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"48U28041B5060270D\";s:6:\"amount\";s:5:\"15.21\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(2569,289,'_download_permissions_granted','yes'),(2570,289,'_recorded_sales','yes'),(2571,289,'_recorded_coupon_usage_counts','yes'),(2572,289,'_order_stock_reduced','yes'),(2683,293,'_customer_user','0'),(2574,289,'_fl_builder_data_back',''),(2575,289,'_fl_builder_draft_back',''),(2576,289,'_uabb_converted','yes'),(2577,291,'_order_key','wc_order_5cba01c7188e6'),(2578,291,'_customer_user','0'),(2579,291,'_payment_method','paypal'),(2580,291,'_payment_method_title','PayPal'),(2581,291,'_transaction_id','8UU873563M449401R'),(2582,291,'_customer_ip_address','69.136.140.133'),(2583,291,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36'),(2584,291,'_created_via','checkout'),(2585,291,'_date_completed',''),(2586,291,'_completed_date',''),(2587,291,'_date_paid','1555694277'),(2588,291,'_paid_date','2019-04-19 17:17:57'),(2589,291,'_cart_hash','14436b5087fa3507e0075e3882efc79c'),(2590,291,'_billing_first_name','tim'),(2591,291,'_billing_last_name','hyland'),(2592,291,'_billing_company',''),(2593,291,'_billing_address_1','1753 brentwood dr'),(2594,291,'_billing_address_2',''),(2595,291,'_billing_city','troy'),(2596,291,'_billing_state','MI'),(2597,291,'_billing_postcode','48098'),(2598,291,'_billing_country','US'),(2599,291,'_billing_email','mckiernanhylandjani@gmail.com'),(2600,291,'_billing_phone',''),(2601,291,'_shipping_first_name','tim'),(2602,291,'_shipping_last_name','hyland'),(2603,291,'_shipping_company',''),(2604,291,'_shipping_address_1','1753 brentwood dr'),(2605,291,'_shipping_address_2',''),(2606,291,'_shipping_city','troy'),(2607,291,'_shipping_state','MI'),(2608,291,'_shipping_postcode','48098'),(2609,291,'_shipping_country','US'),(2610,291,'_order_currency','USD'),(2611,291,'_cart_discount','0'),(2612,291,'_cart_discount_tax','0'),(2613,291,'_order_shipping','0.99'),(2614,291,'_order_shipping_tax','0'),(2615,291,'_order_tax','1.61'),(2616,291,'_order_total','19.59'),(2617,291,'_order_version','3.5.2'),(2618,291,'_prices_include_tax','no'),(2619,291,'_billing_address_index','tim hyland  1753 brentwood dr  troy MI 48098 US mckiernanhylandjani@gmail.com '),(2620,291,'_shipping_address_index','tim hyland  1753 brentwood dr  troy MI 48098 US '),(2621,291,'_shipping_phone',''),(2622,291,'Payment type','instant'),(2623,291,'_paypal_status','completed'),(2624,291,'_download_permissions_granted','yes'),(2625,291,'_recorded_sales','yes'),(2626,291,'_recorded_coupon_usage_counts','yes'),(2627,291,'_order_stock_reduced','yes'),(2628,291,'PayPal Transaction Fee','0.87'),(2629,292,'_order_key','wc_order_5cba73b8a4e47'),(2630,292,'_customer_user','0'),(2631,292,'_payment_method','ppec_paypal'),(2632,292,'_payment_method_title','PayPal Checkout'),(2633,292,'_transaction_id','0AG75455CY371642S'),(2634,292,'_customer_ip_address','71.209.240.38'),(2635,292,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/71.1.241847734 Mobile/15E148 Safari/605.1'),(2636,292,'_created_via','checkout'),(2637,292,'_date_completed',''),(2638,292,'_completed_date',''),(2639,292,'_date_paid','1555723195'),(2640,292,'_paid_date','2019-04-20 01:19:55'),(2641,292,'_cart_hash','9fd6bc9ab6d44c800d3b49604763de39'),(2642,292,'_billing_first_name','Carrie'),(2643,292,'_billing_last_name','Aguilar'),(2644,292,'_billing_company',''),(2645,292,'_billing_address_1','322 W CORONADO RD'),(2646,292,'_billing_address_2',''),(2647,292,'_billing_city','Phoenix'),(2648,292,'_billing_state','AZ'),(2649,292,'_billing_postcode','85003'),(2650,292,'_billing_country','US'),(2651,292,'_billing_email','carrienoelle@gmail.com'),(2652,292,'_billing_phone',''),(2653,292,'_shipping_first_name','Carrie'),(2654,292,'_shipping_last_name','Aguilar'),(2655,292,'_shipping_company',''),(2656,292,'_shipping_address_1','322 W CORONADO RD'),(2657,292,'_shipping_address_2',''),(2658,292,'_shipping_city','Phoenix'),(2659,292,'_shipping_state','AZ'),(2660,292,'_shipping_postcode','85003'),(2661,292,'_shipping_country','US'),(2662,292,'_order_currency','USD'),(2663,292,'_cart_discount','0'),(2664,292,'_cart_discount_tax','0'),(2665,292,'_order_shipping','0.99'),(2666,292,'_order_shipping_tax','0'),(2667,292,'_order_tax','5.51'),(2668,292,'_order_total','64.48'),(2669,292,'_order_version','3.5.2'),(2670,292,'_prices_include_tax','no'),(2671,292,'_billing_address_index','Carrie Aguilar  322 W CORONADO RD  Phoenix AZ 85003 US carrienoelle@gmail.com '),(2672,292,'_shipping_address_index','Carrie Aguilar  322 W CORONADO RD  Phoenix AZ 85003 US '),(2673,292,'_shipping_phone',''),(2674,292,'_paypal_status','completed'),(2675,292,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"0AG75455CY371642S\";s:6:\"amount\";s:5:\"64.48\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(2676,292,'_download_permissions_granted','yes'),(2677,292,'_recorded_sales','yes'),(2678,292,'_recorded_coupon_usage_counts','yes'),(2679,292,'_order_stock_reduced','yes'),(2682,293,'_order_key','wc_order_5ccce8562db25'),(2684,293,'_payment_method','ppec_paypal'),(2685,293,'_payment_method_title','PayPal Checkout'),(2686,293,'_transaction_id','59A85040P3584321W'),(2687,293,'_customer_ip_address','68.231.230.218'),(2688,293,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763'),(2689,293,'_created_via','checkout'),(2690,293,'_date_completed',''),(2691,293,'_completed_date',''),(2692,293,'_date_paid','1556932696'),(2693,293,'_paid_date','2019-05-04 01:18:16'),(2694,293,'_cart_hash','6aca205f76132dea87bfb7fda8b51a7b'),(2695,293,'_billing_first_name','Christine'),(2696,293,'_billing_last_name','Fisher'),(2697,293,'_billing_company',''),(2698,293,'_billing_address_1','1720 Rally Dr.'),(2699,293,'_billing_address_2',''),(2700,293,'_billing_city','Virginia Beach'),(2701,293,'_billing_state','VA'),(2702,293,'_billing_postcode','23454-1233'),(2703,293,'_billing_country','US'),(2704,293,'_billing_email','fisherch3@cox.net'),(2705,293,'_billing_phone',''),(2706,293,'_shipping_first_name','Christine'),(2707,293,'_shipping_last_name','Fisher'),(2708,293,'_shipping_company',''),(2709,293,'_shipping_address_1','1720 Rally Dr.'),(2710,293,'_shipping_address_2',''),(2711,293,'_shipping_city','Virginia Beach'),(2712,293,'_shipping_state','VA'),(2713,293,'_shipping_postcode','23454-1233'),(2714,293,'_shipping_country','US'),(2715,293,'_order_currency','USD'),(2716,293,'_cart_discount','0'),(2717,293,'_cart_discount_tax','0'),(2718,293,'_order_shipping','0.99'),(2719,293,'_order_shipping_tax','0'),(2720,293,'_order_tax','1.23'),(2721,293,'_order_total','15.21'),(2722,293,'_order_version','3.5.2'),(2723,293,'_prices_include_tax','no'),(2724,293,'_billing_address_index','Christine Fisher  1720 Rally Dr.  Virginia Beach VA 23454-1233 US fisherch3@cox.net '),(2725,293,'_shipping_address_index','Christine Fisher  1720 Rally Dr.  Virginia Beach VA 23454-1233 US '),(2726,293,'_shipping_phone',''),(2727,293,'_paypal_status','completed'),(2728,293,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"59A85040P3584321W\";s:6:\"amount\";s:5:\"15.21\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(2729,293,'_download_permissions_granted','yes'),(2730,293,'_recorded_sales','yes'),(2731,293,'_recorded_coupon_usage_counts','yes'),(2732,293,'_order_stock_reduced','yes'),(2733,294,'_order_key','wc_order_5cd185235409c'),(2734,294,'_customer_user','0'),(2735,294,'_payment_method','ppec_paypal'),(2736,294,'_payment_method_title','PayPal Checkout'),(2737,294,'_transaction_id','39942409H3423505D'),(2738,294,'_customer_ip_address','98.156.72.60'),(2739,294,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Mobile/15E148 Safari/604.1'),(2740,294,'_created_via','checkout'),(2741,294,'_date_completed',''),(2742,294,'_completed_date',''),(2743,294,'_date_paid','1557234982'),(2744,294,'_paid_date','2019-05-07 13:16:22'),(2745,294,'_cart_hash','14436b5087fa3507e0075e3882efc79c'),(2746,294,'_billing_first_name','Robert'),(2747,294,'_billing_last_name','Moritz'),(2748,294,'_billing_company',''),(2749,294,'_billing_address_1','5502 Oakview St'),(2750,294,'_billing_address_2',''),(2751,294,'_billing_city','Shawnee'),(2752,294,'_billing_state','KS'),(2753,294,'_billing_postcode','66216-4912'),(2754,294,'_billing_country','US'),(2755,294,'_billing_email','robmoritz@gmail.com'),(2756,294,'_billing_phone',''),(2757,294,'_shipping_first_name','Robert'),(2758,294,'_shipping_last_name','Moritz'),(2759,294,'_shipping_company',''),(2760,294,'_shipping_address_1','5502 Oakview St'),(2761,294,'_shipping_address_2',''),(2762,294,'_shipping_city','Shawnee'),(2763,294,'_shipping_state','KS'),(2764,294,'_shipping_postcode','66216-4912'),(2765,294,'_shipping_country','US'),(2766,294,'_order_currency','USD'),(2767,294,'_cart_discount','0'),(2768,294,'_cart_discount_tax','0'),(2769,294,'_order_shipping','0.99'),(2770,294,'_order_shipping_tax','0'),(2771,294,'_order_tax','1.61'),(2772,294,'_order_total','19.59'),(2773,294,'_order_version','3.5.2'),(2774,294,'_prices_include_tax','no'),(2775,294,'_billing_address_index','Robert Moritz  5502 Oakview St  Shawnee KS 66216-4912 US robmoritz@gmail.com '),(2776,294,'_shipping_address_index','Robert Moritz  5502 Oakview St  Shawnee KS 66216-4912 US '),(2777,294,'_shipping_phone',''),(2778,294,'_paypal_status','completed'),(2779,294,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"39942409H3423505D\";s:6:\"amount\";s:5:\"19.59\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(2780,294,'_download_permissions_granted','yes'),(2781,294,'_recorded_sales','yes'),(2782,294,'_recorded_coupon_usage_counts','yes'),(2783,294,'_order_stock_reduced','yes'),(3632,409,'_billing_address_index','paul klimasewiski  38 timberline drive  farmington CT 06032 US paulk0216@att.net 860-676-8566'),(2785,294,'_fl_builder_data_back',''),(2786,294,'_fl_builder_draft_back',''),(2787,294,'_uabb_converted','yes'),(2788,251,'_fl_builder_data_back',''),(2789,251,'_fl_builder_draft_back',''),(2790,251,'_uabb_converted','yes'),(2791,296,'_uabb_version','1.13.2'),(2792,296,'_edit_lock','1559495016:1'),(2793,296,'_edit_last','1'),(2794,296,'discount_type','percent'),(2795,296,'coupon_amount','50'),(2796,296,'individual_use','no'),(2797,296,'product_ids',''),(2798,296,'exclude_product_ids',''),(2799,296,'usage_limit','0'),(2800,296,'usage_limit_per_user','0'),(2801,296,'limit_usage_to_x_items','0'),(2802,296,'usage_count','1'),(2803,296,'date_expires','1559692800'),(2804,296,'expiry_date','2019-06-05'),(2805,296,'free_shipping','no'),(2806,296,'product_categories','a:0:{}'),(2807,296,'exclude_product_categories','a:0:{}'),(2808,296,'exclude_sale_items','no'),(2809,296,'minimum_amount',''),(2810,296,'maximum_amount',''),(2811,296,'customer_email','a:0:{}'),(2812,297,'_order_key','wc_order_5cf4acb0c8a3b'),(2813,297,'_customer_user','0'),(2814,297,'_payment_method','ppec_paypal'),(2815,297,'_payment_method_title','PayPal Checkout'),(2816,297,'_transaction_id','0SY50608SX0038453'),(2817,297,'_customer_ip_address','98.156.72.60'),(2818,297,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Mobile/15E148 Safari/604.1'),(2819,297,'_created_via','checkout'),(2820,297,'_date_completed',''),(2821,297,'_completed_date',''),(2822,297,'_date_paid','1559538867'),(2823,297,'_paid_date','2019-06-03 05:14:27'),(2824,297,'_cart_hash','1c171b9462523a11a70fde6cd91edd90'),(2825,297,'_billing_first_name','Robert'),(2826,297,'_billing_last_name','Moritz'),(2827,297,'_billing_company',''),(2828,297,'_billing_address_1','5502 Oakview St'),(2829,297,'_billing_address_2',''),(2830,297,'_billing_city','Shawnee'),(2831,297,'_billing_state','KS'),(2832,297,'_billing_postcode','66216-4912'),(2833,297,'_billing_country','US'),(2834,297,'_billing_email','robmoritz@gmail.com'),(2835,297,'_billing_phone',''),(2836,297,'_shipping_first_name','Robert'),(2837,297,'_shipping_last_name','Moritz'),(2838,297,'_shipping_company',''),(2839,297,'_shipping_address_1','5502 Oakview St'),(2840,297,'_shipping_address_2',''),(2841,297,'_shipping_city','Shawnee'),(2842,297,'_shipping_state','KS'),(2843,297,'_shipping_postcode','66216-4912'),(2844,297,'_shipping_country','US'),(2845,297,'_order_currency','USD'),(2846,297,'_cart_discount','14.49'),(2847,297,'_cart_discount_tax','1.38'),(2848,297,'_order_shipping','0.99'),(2849,297,'_order_shipping_tax','0'),(2850,297,'_order_tax','1.38'),(2851,297,'_order_total','16.87'),(2852,297,'_order_version','3.5.2'),(2853,297,'_prices_include_tax','no'),(2854,297,'_billing_address_index','Robert Moritz  5502 Oakview St  Shawnee KS 66216-4912 US robmoritz@gmail.com '),(2855,297,'_shipping_address_index','Robert Moritz  5502 Oakview St  Shawnee KS 66216-4912 US '),(2856,297,'_shipping_phone',''),(2857,297,'_paypal_status','completed'),(2858,297,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"0SY50608SX0038453\";s:6:\"amount\";s:5:\"16.87\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(2859,297,'_download_permissions_granted','yes'),(2860,297,'_recorded_sales','yes'),(2861,297,'_recorded_coupon_usage_counts','yes'),(2862,296,'_used_by','robmoritz@gmail.com'),(2863,297,'_order_stock_reduced','yes'),(2864,298,'_order_key','wc_order_5cf6755a15d26'),(2865,298,'_customer_user','0'),(2866,298,'_payment_method','paypal'),(2867,298,'_payment_method_title','PayPal'),(2868,298,'_transaction_id','3YC05650Y77697639'),(2869,298,'_customer_ip_address','104.54.200.165'),(2870,298,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Mobile/15E148 Safari/604.1'),(2871,298,'_created_via','checkout'),(2872,298,'_date_completed',''),(2873,298,'_completed_date',''),(2874,298,'_date_paid','1559655807'),(2875,298,'_paid_date','2019-06-04 13:43:27'),(2876,298,'_cart_hash','f07b8463ab9e71af9dc7579f6032590e'),(2877,298,'_billing_first_name','Christine'),(2878,298,'_billing_last_name','Huelskamp'),(2879,298,'_billing_company',''),(2880,298,'_billing_address_1','1804 Zach Russell Dr'),(2881,298,'_billing_address_2',''),(2882,298,'_billing_city','Cedar Park'),(2883,298,'_billing_state','TX'),(2884,298,'_billing_postcode','78613'),(2885,298,'_billing_country','US'),(2886,298,'_billing_email','christine.huelskamp@gmail.com'),(2887,298,'_billing_phone',''),(2888,298,'_shipping_first_name','Christine'),(2889,298,'_shipping_last_name','Huelskamp'),(2890,298,'_shipping_company',''),(2891,298,'_shipping_address_1','1804 Zach Russell Dr'),(2892,298,'_shipping_address_2',''),(2893,298,'_shipping_city','Cedar Park'),(2894,298,'_shipping_state','TX'),(2895,298,'_shipping_postcode','78613'),(2896,298,'_shipping_country','US'),(2897,298,'_order_currency','USD'),(2898,298,'_cart_discount','0'),(2899,298,'_cart_discount_tax','0'),(2900,298,'_order_shipping','0.99'),(2901,298,'_order_shipping_tax','0'),(2902,298,'_order_tax','2.47'),(2903,298,'_order_total','29.44'),(2904,298,'_order_version','3.5.2'),(2905,298,'_prices_include_tax','no'),(2906,298,'_billing_address_index','Christine Huelskamp  1804 Zach Russell Dr  Cedar Park TX 78613 US christine.huelskamp@gmail.com '),(2907,298,'_shipping_address_index','Christine Huelskamp  1804 Zach Russell Dr  Cedar Park TX 78613 US '),(2908,298,'_shipping_phone',''),(2909,298,'Payment type','instant'),(2910,298,'_paypal_status','completed'),(2911,298,'_download_permissions_granted','yes'),(2912,298,'_recorded_sales','yes'),(2913,298,'_recorded_coupon_usage_counts','yes'),(2914,298,'_order_stock_reduced','yes'),(2915,298,'PayPal Transaction Fee','1.15'),(2916,299,'_order_key','wc_order_5cfae9bd02cfe'),(2917,299,'_customer_user','0'),(2918,299,'_payment_method','ppec_paypal'),(2919,299,'_payment_method_title','PayPal Checkout'),(2920,299,'_transaction_id','4JY02196PK766932A'),(2921,299,'_customer_ip_address','107.208.215.116'),(2922,299,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1'),(2923,299,'_created_via','checkout'),(2924,299,'_date_completed',''),(2925,299,'_completed_date',''),(2926,299,'_date_paid','1559947711'),(2927,299,'_paid_date','2019-06-07 22:48:31'),(2928,299,'_cart_hash','d7ea6b609523d7540faf0e80c7421e1d'),(2929,299,'_billing_first_name','Courtney'),(2930,299,'_billing_last_name','Martling'),(2931,299,'_billing_company',''),(2932,299,'_billing_address_1','205 E Passage'),(2933,299,'_billing_address_2',''),(2934,299,'_billing_city','Columbia'),(2935,299,'_billing_state','SC'),(2936,299,'_billing_postcode','29212'),(2937,299,'_billing_country','US'),(2938,299,'_billing_email','courtneymartling@gmail.com'),(2939,299,'_billing_phone',''),(2940,299,'_shipping_first_name','Courtney'),(2941,299,'_shipping_last_name','Martling'),(2942,299,'_shipping_company',''),(2943,299,'_shipping_address_1','205 E Passage'),(2944,299,'_shipping_address_2',''),(2945,299,'_shipping_city','Columbia'),(2946,299,'_shipping_state','SC'),(2947,299,'_shipping_postcode','29212'),(2948,299,'_shipping_country','US'),(2949,299,'_order_currency','USD'),(2950,299,'_cart_discount','0'),(2951,299,'_cart_discount_tax','0'),(2952,299,'_order_shipping','0.99'),(2953,299,'_order_shipping_tax','0'),(2954,299,'_order_tax','3.6'),(2955,299,'_order_total','42.57'),(2956,299,'_order_version','3.5.2'),(2957,299,'_prices_include_tax','no'),(2958,299,'_billing_address_index','Courtney Martling  205 E Passage  Columbia SC 29212 US courtneymartling@gmail.com '),(2959,299,'_shipping_address_index','Courtney Martling  205 E Passage  Columbia SC 29212 US '),(2960,299,'_shipping_phone',''),(2961,299,'_paypal_status','completed'),(2962,299,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"4JY02196PK766932A\";s:6:\"amount\";s:5:\"42.57\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(2963,299,'_download_permissions_granted','yes'),(2964,299,'_recorded_sales','yes'),(2965,299,'_recorded_coupon_usage_counts','yes'),(2966,299,'_order_stock_reduced','yes'),(2967,300,'_order_key','wc_order_5cfd4eac5f5a2'),(2968,300,'_customer_user','0'),(2969,300,'_payment_method','ppec_paypal'),(2970,300,'_payment_method_title','PayPal Checkout'),(2971,300,'_transaction_id','7BU37737DB9657254'),(2972,300,'_customer_ip_address','73.109.143.107'),(2973,300,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763'),(2974,300,'_created_via','checkout'),(2975,300,'_date_completed',''),(2976,300,'_completed_date',''),(2977,300,'_date_paid','1560104622'),(2978,300,'_paid_date','2019-06-09 18:23:42'),(2979,300,'_cart_hash','6aca205f76132dea87bfb7fda8b51a7b'),(2980,300,'_billing_first_name','Voni'),(2981,300,'_billing_last_name','Wiggins'),(2982,300,'_billing_company','VONI WIGGINS'),(2983,300,'_billing_address_1','210 Burnett Ave N'),(2984,300,'_billing_address_2',''),(2985,300,'_billing_city','Renton'),(2986,300,'_billing_state','WA'),(2987,300,'_billing_postcode','98057'),(2988,300,'_billing_country','US'),(2989,300,'_billing_email','voniwiggins@hotmail.com'),(2990,300,'_billing_phone',''),(2991,300,'_shipping_first_name','Voni'),(2992,300,'_shipping_last_name','Wiggins'),(2993,300,'_shipping_company','VONI WIGGINS'),(2994,300,'_shipping_address_1','210 Burnett Ave N'),(2995,300,'_shipping_address_2',''),(2996,300,'_shipping_city','Renton'),(2997,300,'_shipping_state','WA'),(2998,300,'_shipping_postcode','98057'),(2999,300,'_shipping_country','US'),(3000,300,'_order_currency','USD'),(3001,300,'_cart_discount','0'),(3002,300,'_cart_discount_tax','0'),(3003,300,'_order_shipping','0.99'),(3004,300,'_order_shipping_tax','0'),(3005,300,'_order_tax','1.23'),(3006,300,'_order_total','15.21'),(3007,300,'_order_version','3.5.2'),(3008,300,'_prices_include_tax','no'),(3009,300,'_billing_address_index','Voni Wiggins VONI WIGGINS 210 Burnett Ave N  Renton WA 98057 US voniwiggins@hotmail.com '),(3010,300,'_shipping_address_index','Voni Wiggins VONI WIGGINS 210 Burnett Ave N  Renton WA 98057 US '),(3011,300,'_shipping_phone',''),(3012,300,'_paypal_status','completed'),(3013,300,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"7BU37737DB9657254\";s:6:\"amount\";s:5:\"15.21\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(3014,300,'_download_permissions_granted','yes'),(3015,300,'_recorded_sales','yes'),(3016,300,'_recorded_coupon_usage_counts','yes'),(3017,300,'_order_stock_reduced','yes'),(3178,401,'_customer_user','0'),(3631,409,'_prices_include_tax','no'),(3624,409,'_cart_discount','0'),(3625,409,'_cart_discount_tax','0'),(3626,409,'_order_shipping','0.99'),(3627,409,'_order_shipping_tax','0'),(3628,409,'_order_tax','1.99'),(3629,409,'_order_total','23.97'),(3030,302,'_wp_attached_file','woocommerce-placeholder.png'),(3031,302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3622,409,'_shipping_country','US'),(3623,409,'_order_currency','USD'),(3619,409,'_shipping_city','farmington'),(3620,409,'_shipping_state','CT'),(3621,409,'_shipping_postcode','06032'),(3617,409,'_shipping_last_name','klimasewiski'),(3618,409,'_shipping_address_1','38 timberline drive'),(3615,409,'_billing_phone','860-676-8566'),(3616,409,'_shipping_first_name','paul'),(3613,409,'_billing_country','US'),(3614,409,'_billing_email','paulk0216@att.net'),(3610,409,'_billing_city','farmington'),(3611,409,'_billing_state','CT'),(3612,409,'_billing_postcode','06032'),(3608,409,'_billing_last_name','klimasewiski'),(3609,409,'_billing_address_1','38 timberline drive'),(3606,409,'_cart_hash','bf91fbbf270ae35aa673761c6c1b1b06'),(3607,409,'_billing_first_name','paul'),(3605,409,'_created_via','checkout'),(3603,409,'_customer_ip_address','32.209.221.246'),(3604,409,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(3600,409,'_customer_user','0'),(3601,409,'_payment_method','paypal'),(3602,409,'_payment_method_title','PayPal'),(3595,408,'free_shipping','no'),(3596,408,'exclude_sale_items','no'),(3592,408,'limit_usage_to_x_items','0'),(3593,408,'usage_count','0'),(3594,408,'date_expires',NULL),(3589,408,'individual_use','no'),(3590,408,'usage_limit','0'),(3591,408,'usage_limit_per_user','0'),(3587,408,'discount_type','fixed_cart'),(3588,408,'coupon_amount','10'),(3584,408,'_uabb_version','1.18.1'),(3585,408,'_edit_lock','1568394566:1'),(3586,408,'_edit_last','1'),(3800,413,'_customer_user','0'),(3583,403,'_edit_lock','1568394321:1'),(3599,409,'_order_key','wc_order_ZblNXKlgVNnDq'),(3801,413,'_payment_method','paypal'),(3802,413,'_payment_method_title','PayPal'),(3579,405,'_shipping_phone','19198085688'),(3580,405,'is_vat_exempt','no'),(3578,405,'_shipping_address_index','Sakina Bailey  1311 Cook Rd Apt 201 DURHAM NC 27713 US 19198085688'),(3575,405,'_order_version','3.6.4'),(3576,405,'_prices_include_tax','no'),(3577,405,'_billing_address_index','Sakina Bailey  1311 Cook Rd Apt 201 DURHAM NC 27713 US sakina.bailey@gmail.com 19198085688'),(3573,405,'_order_tax','1.23'),(3574,405,'_order_total','15.21'),(3570,405,'_cart_discount_tax','0'),(3571,405,'_order_shipping','0.99'),(3572,405,'_order_shipping_tax','0'),(3568,405,'_order_currency','USD'),(3569,405,'_cart_discount','0'),(3565,405,'_shipping_state','NC'),(3566,405,'_shipping_postcode','27713'),(3567,405,'_shipping_country','US'),(3563,405,'_shipping_address_2','Apt 201'),(3564,405,'_shipping_city','DURHAM'),(3422,402,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/80.0.262003652 Mobile/16F203 Safari/604.1'),(3423,402,'_created_via','checkout'),(3424,402,'_cart_hash','bf91fbbf270ae35aa673761c6c1b1b06'),(3425,402,'_billing_first_name','Bambie'),(3426,402,'_billing_last_name','Benavidez'),(3427,402,'_billing_address_1','4226 Marshall St'),(3428,402,'_billing_city','Le Grand'),(3429,402,'_billing_state','CA'),(3430,402,'_billing_postcode','95333'),(3431,402,'_billing_country','US'),(3432,402,'_billing_email','bambieoscar1124@yahoo.com'),(3433,402,'_billing_phone','2097612591'),(3434,402,'_shipping_first_name','Bambie'),(3435,402,'_shipping_last_name','Benavidez'),(3436,402,'_shipping_address_1','4226 Marshall St'),(3437,402,'_shipping_city','Le Grand'),(3438,402,'_shipping_state','CA'),(3439,402,'_shipping_postcode','95333'),(3440,402,'_shipping_country','US'),(3441,402,'_order_currency','USD'),(3442,402,'_cart_discount','0'),(3443,402,'_cart_discount_tax','0'),(3444,402,'_order_shipping','0.99'),(3445,402,'_order_shipping_tax','0'),(3446,402,'_order_tax','1.99'),(3447,402,'_order_total','23.97'),(3448,402,'_order_version','3.6.4'),(3449,402,'_prices_include_tax','no'),(3450,402,'_billing_address_index','Bambie Benavidez  4226 Marshall St  Le Grand CA 95333 US bambieoscar1124@yahoo.com 2097612591'),(3451,402,'_shipping_address_index','Bambie Benavidez  4226 Marshall St  Le Grand CA 95333 US 2097612591'),(3452,402,'_shipping_phone','2097612591'),(3453,402,'is_vat_exempt','no'),(3454,403,'_order_key','wc_order_Vsit3piY1mZBr'),(3455,403,'_customer_user','0'),(3456,403,'_payment_method','ppec_paypal'),(3457,403,'_payment_method_title','PayPal Checkout'),(3458,403,'_customer_ip_address','104.4.181.155'),(3459,403,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SM-N960U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36'),(3460,403,'_created_via','checkout'),(3461,403,'_cart_hash','c37ed223c3001d2c4740f44ae31af177'),(3462,403,'_billing_first_name','Bryce'),(3463,403,'_billing_last_name','Mason'),(3464,403,'_billing_address_1','1240A David Porter Rd'),(3465,403,'_billing_city','Key West'),(3466,403,'_billing_state','FL'),(3467,403,'_billing_postcode','33040'),(3468,403,'_billing_country','US'),(3469,403,'_billing_email','bmason1325@gmail.com'),(3470,403,'_shipping_first_name','Bryce'),(3471,403,'_shipping_last_name','Mason'),(3472,403,'_shipping_address_1','1240A David Porter Rd'),(3473,403,'_shipping_city','Key West'),(3474,403,'_shipping_state','FL'),(3475,403,'_shipping_postcode','33040'),(3476,403,'_shipping_country','US'),(3477,403,'_order_currency','USD'),(3478,403,'_cart_discount','0'),(3479,403,'_cart_discount_tax','0'),(3480,403,'_order_shipping','0.99'),(3481,403,'_order_shipping_tax','0'),(3482,403,'_order_tax','2.75'),(3483,403,'_order_total','32.73'),(3484,403,'_order_version','3.6.4'),(3485,403,'_prices_include_tax','no'),(3486,403,'_billing_address_index','Bryce Mason  1240A David Porter Rd  Key West FL 33040 US bmason1325@gmail.com '),(3487,403,'_shipping_address_index','Bryce Mason  1240A David Porter Rd  Key West FL 33040 US '),(3488,403,'_shipping_phone',''),(3489,403,'is_vat_exempt','no'),(3500,403,'Payer PayPal address','bmason1325@gmail.com'),(3491,403,'_transaction_id','0WM3767564786640J'),(3492,403,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"0WM3767564786640J\";s:6:\"amount\";s:5:\"32.73\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(3493,403,'_date_paid','1566137381'),(3494,403,'_paid_date','2019-08-18 07:09:41'),(3495,403,'_download_permissions_granted','yes'),(3496,403,'_recorded_sales','yes'),(3497,403,'_recorded_coupon_usage_counts','yes'),(3498,403,'_order_stock_reduced','yes'),(3505,403,'_paypal_transaction_fee','1.25'),(3501,403,'Payer first name','Bryce'),(3502,403,'Payer last name','Mason'),(3503,403,'Payment type','instant'),(3504,403,'_paypal_status','completed'),(3506,404,'_order_key','wc_order_ULCPSFqzFR9Ig'),(3507,404,'_customer_user','0'),(3508,404,'_payment_method','paypal'),(3509,404,'_payment_method_title','PayPal'),(3510,404,'_customer_ip_address','74.219.104.26'),(3511,404,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(3512,404,'_created_via','checkout'),(3513,404,'_cart_hash','6aab06dd5f998b0cb890f23b320419d6'),(3514,404,'_billing_first_name','Travis'),(3515,404,'_billing_last_name','Cabell'),(3516,404,'_billing_address_1','1988 Christianburg Road'),(3517,404,'_billing_city','Bagdad'),(3518,404,'_billing_state','KY'),(3519,404,'_billing_postcode','40003'),(3520,404,'_billing_country','US'),(3521,404,'_billing_email','tcabell@att.net'),(3522,404,'_shipping_first_name','Travis'),(3523,404,'_shipping_last_name','Cabell'),(3524,404,'_shipping_address_1','1988 Christianburg Road'),(3525,404,'_shipping_city','Bagdad'),(3526,404,'_shipping_state','KY'),(3527,404,'_shipping_postcode','40003'),(3528,404,'_shipping_country','US'),(3529,404,'_order_currency','USD'),(3530,404,'_cart_discount','0'),(3531,404,'_cart_discount_tax','0'),(3532,404,'_order_shipping','0.99'),(3533,404,'_order_shipping_tax','0'),(3534,404,'_order_tax','1.23'),(3535,404,'_order_total','15.21'),(3536,404,'_order_version','3.6.4'),(3537,404,'_prices_include_tax','no'),(3538,404,'_billing_address_index','Travis Cabell  1988 Christianburg Road  Bagdad KY 40003 US tcabell@att.net '),(3539,404,'_shipping_address_index','Travis Cabell  1988 Christianburg Road  Bagdad KY 40003 US '),(3540,404,'_shipping_phone',''),(3541,404,'is_vat_exempt','no'),(3542,405,'_order_key','wc_order_ncVdEZOiVqj30'),(3543,405,'_customer_user','0'),(3544,405,'_payment_method','paypal'),(3545,405,'_payment_method_title','PayPal'),(3546,405,'_customer_ip_address','45.37.65.7'),(3547,405,'_customer_user_agent','Mozilla/5.0 (X11; CrOS armv7l 12239.67.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.102 Safari/537.36'),(3548,405,'_created_via','checkout'),(3549,405,'_cart_hash','6aab06dd5f998b0cb890f23b320419d6'),(3550,405,'_billing_first_name','Sakina'),(3551,405,'_billing_last_name','Bailey'),(3552,405,'_billing_address_1','1311 Cook Rd'),(3553,405,'_billing_address_2','Apt 201'),(3554,405,'_billing_city','DURHAM'),(3555,405,'_billing_state','NC'),(3556,405,'_billing_postcode','27713'),(3557,405,'_billing_country','US'),(3558,405,'_billing_email','sakina.bailey@gmail.com'),(3559,405,'_billing_phone','19198085688'),(3560,405,'_shipping_first_name','Sakina'),(3561,405,'_shipping_last_name','Bailey'),(3562,405,'_shipping_address_1','1311 Cook Rd'),(3420,402,'_payment_method_title','PayPal'),(3421,402,'_customer_ip_address','107.201.42.64'),(3418,402,'_customer_user','0'),(3419,402,'_payment_method','paypal'),(3126,400,'_order_key','wc_order_woL5cFsuY8z5M'),(3127,400,'_customer_user','0'),(3128,400,'_payment_method','paypal'),(3129,400,'_payment_method_title','PayPal'),(3130,400,'_customer_ip_address','172.58.225.61'),(3131,400,'_customer_user_agent','Mozilla/5.0 (Linux; Android 6.0.1; A0001) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.101 Mobile Safari/537.36'),(3132,400,'_created_via','checkout'),(3133,400,'_cart_hash','6aab06dd5f998b0cb890f23b320419d6'),(3134,400,'_billing_first_name','Monique'),(3135,400,'_billing_last_name','Popiel'),(3136,400,'_billing_address_1','45 Wall Street Apt 1219'),(3137,400,'_billing_city','New York'),(3138,400,'_billing_state','NY'),(3139,400,'_billing_postcode','10005'),(3140,400,'_billing_country','US'),(3141,400,'_billing_email','m.popiel@yahoo.com'),(3142,400,'_billing_phone','6464796144'),(3143,400,'_shipping_first_name','Monique'),(3144,400,'_shipping_last_name','Popiel'),(3145,400,'_shipping_company','c/o Thomas Gall'),(3146,400,'_shipping_address_1','249 73rd Street'),(3147,400,'_shipping_address_2','BSMT'),(3148,400,'_shipping_city','Brooklyn'),(3149,400,'_shipping_state','NY'),(3150,400,'_shipping_postcode','11209'),(3151,400,'_shipping_country','US'),(3152,400,'_order_currency','USD'),(3153,400,'_cart_discount','0'),(3154,400,'_cart_discount_tax','0'),(3155,400,'_order_shipping','0.99'),(3156,400,'_order_shipping_tax','0'),(3157,400,'_order_tax','1.23'),(3158,400,'_order_total','15.21'),(3159,400,'_order_version','3.6.4'),(3160,400,'_prices_include_tax','no'),(3161,400,'_billing_address_index','Monique Popiel  45 Wall Street Apt 1219  New York NY 10005 US m.popiel@yahoo.com 6464796144'),(3162,400,'_shipping_address_index','Monique Popiel c/o Thomas Gall 249 73rd Street BSMT Brooklyn NY 11209 US 6464796144'),(3163,400,'_shipping_phone',''),(3164,400,'is_vat_exempt','no'),(3165,400,'Payment type','instant'),(3166,400,'_transaction_id','567022052G376394J'),(3167,400,'_paypal_status','completed'),(3168,400,'PayPal Transaction Fee','0.74'),(3169,400,'_date_paid','1562177201'),(3170,400,'_paid_date','2019-07-03 11:06:41'),(3171,400,'_download_permissions_granted','yes'),(3172,400,'_recorded_sales','yes'),(3173,400,'_recorded_coupon_usage_counts','yes'),(3174,400,'_order_stock_reduced','yes'),(3177,401,'_order_key','wc_order_3ABbOt8tP8Hrq'),(3179,401,'_payment_method','paypal'),(3180,401,'_payment_method_title','PayPal'),(3181,401,'_customer_ip_address','174.193.140.215'),(3182,401,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1'),(3183,401,'_created_via','checkout'),(3184,401,'_cart_hash','6aab06dd5f998b0cb890f23b320419d6'),(3185,401,'_billing_first_name','Josh'),(3186,401,'_billing_last_name','Barnhardt'),(3187,401,'_billing_address_1','2200 Kenmore Ave'),(3188,401,'_billing_city','Charlotte'),(3189,401,'_billing_state','NC'),(3190,401,'_billing_postcode','28204'),(3191,401,'_billing_country','US'),(3192,401,'_billing_email','kpbarnhardt@gmail.com'),(3193,401,'_shipping_first_name','Josh'),(3194,401,'_shipping_last_name','Barnhardt'),(3195,401,'_shipping_address_1','2200 Kenmore Ave'),(3196,401,'_shipping_city','Charlotte'),(3197,401,'_shipping_state','NC'),(3198,401,'_shipping_postcode','28204'),(3199,401,'_shipping_country','US'),(3200,401,'_order_currency','USD'),(3201,401,'_cart_discount','0'),(3202,401,'_cart_discount_tax','0'),(3203,401,'_order_shipping','0.99'),(3204,401,'_order_shipping_tax','0'),(3205,401,'_order_tax','1.23'),(3206,401,'_order_total','15.21'),(3207,401,'_order_version','3.6.4'),(3208,401,'_prices_include_tax','no'),(3209,401,'_billing_address_index','Josh Barnhardt  2200 Kenmore Ave  Charlotte NC 28204 US kpbarnhardt@gmail.com '),(3210,401,'_shipping_address_index','Josh Barnhardt  2200 Kenmore Ave  Charlotte NC 28204 US '),(3211,401,'_shipping_phone',''),(3212,401,'is_vat_exempt','no'),(3213,401,'Payment type','instant'),(3214,401,'_transaction_id','5FL563871J5971419'),(3215,401,'_paypal_status','completed'),(3216,401,'PayPal Transaction Fee','0.74'),(3217,401,'_date_paid','1562523935'),(3218,401,'_paid_date','2019-07-07 11:25:35'),(3219,401,'_download_permissions_granted','yes'),(3220,401,'_recorded_sales','yes'),(3221,401,'_recorded_coupon_usage_counts','yes'),(3222,401,'_order_stock_reduced','yes'),(3630,409,'_order_version','3.6.4'),(3417,402,'_order_key','wc_order_RsGfA4dCty1kz'),(3633,409,'_shipping_address_index','paul klimasewiski  38 timberline drive  farmington CT 06032 US 860-676-8566'),(3634,409,'_shipping_phone','860-676-8566'),(3635,409,'is_vat_exempt','no'),(3636,409,'Payment type','instant'),(3637,409,'_transaction_id','4H331532PW842671V'),(3638,409,'_paypal_status','completed'),(3639,409,'PayPal Transaction Fee','1.00'),(3640,409,'_date_paid','1569182994'),(3641,409,'_paid_date','2019-09-22 13:09:54'),(3642,409,'_download_permissions_granted','yes'),(3643,409,'_recorded_sales','yes'),(3644,409,'_recorded_coupon_usage_counts','yes'),(3645,409,'_order_stock_reduced','yes'),(3646,410,'_order_key','wc_order_ksU7i3BCJSecq'),(3647,410,'_customer_user','0'),(3648,410,'_payment_method','paypal'),(3649,410,'_payment_method_title','PayPal'),(3650,410,'_customer_ip_address','73.72.39.79'),(3651,410,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/77.0.3865.69 Mobile/15E148 Safari/605.1'),(3652,410,'_created_via','checkout'),(3653,410,'_cart_hash','1a54986838c94ada27b00419d664ff9a'),(3654,410,'_billing_first_name','Manal'),(3655,410,'_billing_last_name','Khalaf'),(3656,410,'_billing_address_1','8501 Rob Roy Dr'),(3657,410,'_billing_city','Orland Park'),(3658,410,'_billing_state','IL'),(3659,410,'_billing_postcode','60462'),(3660,410,'_billing_country','US'),(3661,410,'_billing_email','Khalaf.manal@ymail.com'),(3662,410,'_billing_phone','7082890680'),(3663,410,'_shipping_first_name','Manal'),(3664,410,'_shipping_last_name','Khalaf'),(3665,410,'_shipping_address_1','8501 Rob Roy Dr'),(3666,410,'_shipping_city','Orland Park'),(3667,410,'_shipping_state','IL'),(3668,410,'_shipping_postcode','60462'),(3669,410,'_shipping_country','US'),(3670,410,'_order_currency','USD'),(3671,410,'_cart_discount','0'),(3672,410,'_cart_discount_tax','0'),(3673,410,'_order_shipping','0.99'),(3674,410,'_order_shipping_tax','0'),(3675,410,'_order_tax','1.61'),(3676,410,'_order_total','19.59'),(3677,410,'_order_version','3.6.4'),(3678,410,'_prices_include_tax','no'),(3679,410,'_billing_address_index','Manal Khalaf  8501 Rob Roy Dr  Orland Park IL 60462 US Khalaf.manal@ymail.com 7082890680'),(3680,410,'_shipping_address_index','Manal Khalaf  8501 Rob Roy Dr  Orland Park IL 60462 US 7082890680'),(3681,410,'_shipping_phone','7082890680'),(3682,410,'is_vat_exempt','no'),(3683,410,'Payment type','instant'),(3684,410,'_transaction_id','99S82382M30032346'),(3685,410,'_paypal_status','completed'),(3686,410,'PayPal Transaction Fee','0.87'),(3687,410,'_date_paid','1569972055'),(3688,410,'_paid_date','2019-10-01 16:20:55'),(3689,410,'_download_permissions_granted','yes'),(3690,410,'_recorded_sales','yes'),(3691,410,'_recorded_coupon_usage_counts','yes'),(3692,410,'_order_stock_reduced','yes'),(3693,411,'_order_key','wc_order_nwxgJgA0W2V40'),(3694,411,'_customer_user','0'),(3695,411,'_payment_method','ppec_paypal'),(3696,411,'_payment_method_title','PayPal Checkout'),(3697,411,'_customer_ip_address','173.19.166.52'),(3698,411,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [Pinterest/iOS]'),(3699,411,'_created_via','checkout'),(3700,411,'_cart_hash','6aab06dd5f998b0cb890f23b320419d6'),(3701,411,'_billing_first_name','robbin'),(3702,411,'_billing_last_name','koivisto'),(3703,411,'_billing_address_1','3900 evergreen dr'),(3704,411,'_billing_city','Pace'),(3705,411,'_billing_state','FL'),(3706,411,'_billing_postcode','32571'),(3707,411,'_billing_country','US'),(3708,411,'_billing_email','robbinkoivisto@yahoo.com'),(3709,411,'_shipping_first_name','robbin'),(3710,411,'_shipping_last_name','koivisto'),(3711,411,'_shipping_address_1','3900 evergreen dr'),(3712,411,'_shipping_city','Pace'),(3713,411,'_shipping_state','FL'),(3714,411,'_shipping_postcode','32571'),(3715,411,'_shipping_country','US'),(3716,411,'_order_currency','USD'),(3717,411,'_cart_discount','0'),(3718,411,'_cart_discount_tax','0'),(3719,411,'_order_shipping','0.99'),(3720,411,'_order_shipping_tax','0'),(3721,411,'_order_tax','1.23'),(3722,411,'_order_total','15.21'),(3723,411,'_order_version','3.6.4'),(3724,411,'_prices_include_tax','no'),(3725,411,'_billing_address_index','robbin koivisto  3900 evergreen dr  Pace FL 32571 US robbinkoivisto@yahoo.com '),(3726,411,'_shipping_address_index','robbin koivisto  3900 evergreen dr  Pace FL 32571 US '),(3727,411,'_shipping_phone',''),(3728,411,'is_vat_exempt','no'),(3739,411,'Payer PayPal address','robbinkoivisto@yahoo.com'),(3730,411,'_transaction_id','03766314T5216833A'),(3731,411,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"03766314T5216833A\";s:6:\"amount\";s:5:\"15.21\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(3732,411,'_date_paid','1570039445'),(3733,411,'_paid_date','2019-10-02 11:04:05'),(3734,411,'_download_permissions_granted','yes'),(3735,411,'_recorded_sales','yes'),(3736,411,'_recorded_coupon_usage_counts','yes'),(3737,411,'_order_stock_reduced','yes'),(3744,411,'_paypal_transaction_fee','0.74'),(3740,411,'Payer first name','robbin'),(3741,411,'Payer last name','koivisto'),(3742,411,'Payment type','instant'),(3743,411,'_paypal_status','completed'),(3745,412,'_order_key','wc_order_mQ4wKSfX4i0gg'),(3746,412,'_customer_user','0'),(3747,412,'_payment_method','ppec_paypal'),(3748,412,'_payment_method_title','PayPal Checkout'),(3749,412,'_customer_ip_address','174.237.139.100'),(3750,412,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 12_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 Safari/601.1 bingipadclient BingWeb'),(3751,412,'_created_via','checkout'),(3752,412,'_cart_hash','1a54986838c94ada27b00419d664ff9a'),(3753,412,'_billing_first_name','Janet'),(3754,412,'_billing_last_name','Jones'),(3755,412,'_billing_address_1','229 Rainbow Dr #12954'),(3756,412,'_billing_city','Livingston'),(3757,412,'_billing_state','TX'),(3758,412,'_billing_postcode','77399'),(3759,412,'_billing_country','US'),(3760,412,'_billing_email','jan8j@dancinghat.com'),(3761,412,'_shipping_first_name','Janet'),(3762,412,'_shipping_last_name','Jones'),(3763,412,'_shipping_address_1','229 Rainbow Dr #12954'),(3764,412,'_shipping_city','Livingston'),(3765,412,'_shipping_state','TX'),(3766,412,'_shipping_postcode','77399'),(3767,412,'_shipping_country','US'),(3768,412,'_order_currency','USD'),(3769,412,'_cart_discount','0'),(3770,412,'_cart_discount_tax','0'),(3771,412,'_order_shipping','0.99'),(3772,412,'_order_shipping_tax','0'),(3773,412,'_order_tax','1.61'),(3774,412,'_order_total','19.59'),(3775,412,'_order_version','3.6.4'),(3776,412,'_prices_include_tax','no'),(3777,412,'_billing_address_index','Janet Jones  229 Rainbow Dr #12954  Livingston TX 77399 US jan8j@dancinghat.com '),(3778,412,'_shipping_address_index','Janet Jones  229 Rainbow Dr #12954  Livingston TX 77399 US '),(3779,412,'_shipping_phone',''),(3780,412,'is_vat_exempt','no'),(3791,412,'Payer PayPal address','jan8j@dancinghat.com'),(3782,412,'_transaction_id','2579160027994343J'),(3783,412,'_woo_pp_txnData','a:2:{s:15:\"refundable_txns\";a:1:{i:0;a:4:{s:5:\"txnID\";s:17:\"2579160027994343J\";s:6:\"amount\";s:5:\"19.59\";s:15:\"refunded_amount\";i:0;s:6:\"status\";s:9:\"Completed\";}}s:8:\"txn_type\";s:4:\"sale\";}'),(3784,412,'_date_paid','1570806856'),(3785,412,'_paid_date','2019-10-11 08:14:16'),(3786,412,'_download_permissions_granted','yes'),(3787,412,'_recorded_sales','yes'),(3788,412,'_recorded_coupon_usage_counts','yes'),(3789,412,'_order_stock_reduced','yes'),(3796,412,'_paypal_transaction_fee','0.87'),(3792,412,'Payer first name','Janet'),(3793,412,'Payer last name','Jones'),(3794,412,'Payment type','instant'),(3795,412,'_paypal_status','completed'),(3799,413,'_order_key','wc_order_tNPkfOo23CCFV'),(3803,413,'_customer_ip_address','156.65.14.254'),(3804,413,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SM-G950U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.116 Mobile Safari/537.36'),(3805,413,'_created_via','checkout'),(3806,413,'_cart_hash','bf91fbbf270ae35aa673761c6c1b1b06'),(3807,413,'_billing_first_name','Jose'),(3808,413,'_billing_last_name','Gonzalez'),(3809,413,'_billing_address_1','107 Delmar Dr'),(3810,413,'_billing_city','Simpsonville'),(3811,413,'_billing_state','SC'),(3812,413,'_billing_postcode','29680'),(3813,413,'_billing_country','US'),(3814,413,'_billing_email','gonzojoey@gmail.com'),(3815,413,'_shipping_first_name','Jose'),(3816,413,'_shipping_last_name','Gonzalez'),(3817,413,'_shipping_address_1','107 Delmar Dr'),(3818,413,'_shipping_city','Simpsonville'),(3819,413,'_shipping_state','SC'),(3820,413,'_shipping_postcode','29680'),(3821,413,'_shipping_country','US'),(3822,413,'_order_currency','USD'),(3823,413,'_cart_discount','0'),(3824,413,'_cart_discount_tax','0'),(3825,413,'_order_shipping','0.99'),(3826,413,'_order_shipping_tax','0'),(3827,413,'_order_tax','1.99'),(3828,413,'_order_total','23.97'),(3829,413,'_order_version','3.6.4'),(3830,413,'_prices_include_tax','no'),(3831,413,'_billing_address_index','Jose Gonzalez  107 Delmar Dr  Simpsonville SC 29680 US gonzojoey@gmail.com '),(3832,413,'_shipping_address_index','Jose Gonzalez  107 Delmar Dr  Simpsonville SC 29680 US '),(3833,413,'_shipping_phone',''),(3834,413,'is_vat_exempt','no'),(3835,413,'Payment type','instant'),(3836,413,'_transaction_id','4MW789543D918712Y'),(3837,413,'_paypal_status','completed'),(3838,413,'PayPal Transaction Fee','1.00'),(3839,413,'_date_paid','1571319046'),(3840,413,'_paid_date','2019-10-17 06:30:46'),(3841,413,'_download_permissions_granted','yes'),(3842,413,'_recorded_sales','yes'),(3843,413,'_recorded_coupon_usage_counts','yes'),(3844,413,'_order_stock_reduced','yes'),(3845,414,'_uabb_version','1.18.1'),(3865,305,'_wp_trash_meta_status','draft'),(3866,305,'_wp_trash_meta_time','1572912544'),(3867,305,'_wp_desired_post_slug',''),(3868,303,'_wp_trash_meta_status','draft'),(3869,303,'_wp_trash_meta_time','1572912544'),(3870,303,'_wp_desired_post_slug',''),(3871,304,'_wp_trash_meta_status','draft'),(3872,304,'_wp_trash_meta_time','1572912544'),(3873,304,'_wp_desired_post_slug',''),(3874,427,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1572913256;}'),(3875,428,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1572913257;}'),(3876,429,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1572913258;}'),(3877,430,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1572913296;}'),(3846,416,'_wp_attached_file','2019/11/Amazon-screenshot.jpg'),(3847,416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1204;s:6:\"height\";i:584;s:4:\"file\";s:29:\"2019/11/Amazon-screenshot.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Amazon-screenshot-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Amazon-screenshot-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Amazon-screenshot-768x373.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Amazon-screenshot-1024x497.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Amazon-screenshot-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"Amazon-screenshot-600x291.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Amazon-screenshot-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Amazon-screenshot-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Amazon-screenshot-600x291.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Amazon-screenshot-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:4:\"Test\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1572870820\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3848,417,'_wp_attached_file','2019/11/Screenshot_20191104-123535_Chrome.jpg'),(3849,417,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:2464;s:4:\"file\";s:45:\"2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot_20191104-123535_Chrome-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot_20191104-123535_Chrome-175x300.jpg\";s:5:\"width\";i:175;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Screenshot_20191104-123535_Chrome-768x1314.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1314;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot_20191104-123535_Chrome-598x1024.jpg\";s:5:\"width\";i:598;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:45:\"Screenshot_20191104-123535_Chrome-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:46:\"Screenshot_20191104-123535_Chrome-600x1027.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1027;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot_20191104-123535_Chrome-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:45:\"Screenshot_20191104-123535_Chrome-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:46:\"Screenshot_20191104-123535_Chrome-600x1027.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1027;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot_20191104-123535_Chrome-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3864,423,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(3850,234,'_fl_builder_data','a:4:{s:13:\"5dc0899282241\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899282241\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":167:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:16:\"enable_particles\";s:2:\"no\";s:24:\"uabb_row_particles_style\";s:4:\"none\";s:26:\"uabb_particles_custom_code\";s:0:\"\";s:24:\"uabb_particles_direction\";s:6:\"bottom\";s:24:\"uabb_row_particles_color\";s:0:\"\";s:32:\"uabb_row_particles_color_opacity\";s:0:\"\";s:27:\"uabb_row_particles_settings\";s:2:\"no\";s:25:\"uabb_row_number_particles\";s:0:\"\";s:23:\"uabb_row_particles_size\";s:0:\"\";s:24:\"uabb_row_particles_speed\";s:0:\"\";s:39:\"uabb_row_particles_interactive_settings\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899283f69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899283f69\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dc0899282241\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dc08992844e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08992844e7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dc0899283f69\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":107:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:22:\"uabb_col_gradient_type\";s:6:\"linear\";s:31:\"uabb_col_gradient_primary_color\";s:0:\"\";s:33:\"uabb_col_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_col_radial_direction\";s:13:\"center_center\";s:23:\"uabb_col_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_col_linear_direction\";s:2:\"24\";s:31:\"uabb_col_linear_advance_options\";s:2:\"no\";s:36:\"uabb_col_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_col_radial_advance_options\";s:2:\"no\";s:36:\"uabb_col_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_radial_gradient_secondary_loc\";s:3:\"100\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:15:\"col_drop_shadow\";s:2:\"no\";s:20:\"col_shadow_color_hor\";s:1:\"0\";s:20:\"col_shadow_color_ver\";s:1:\"0\";s:21:\"col_shadow_color_blur\";s:1:\"7\";s:20:\"col_shadow_color_spr\";s:1:\"0\";s:16:\"col_shadow_color\";s:21:\"rgba(168,168,168,0.5)\";s:16:\"col_hover_shadow\";s:2:\"no\";s:26:\"col_shadow_color_hor_hover\";s:1:\"0\";s:26:\"col_shadow_color_ver_hover\";s:1:\"0\";s:27:\"col_shadow_color_blur_hover\";s:2:\"10\";s:26:\"col_shadow_color_spr_hover\";s:1:\"1\";s:22:\"col_shadow_color_hover\";s:21:\"rgba(168,168,168,0.9)\";s:27:\"col_shadow_hover_transition\";i:200;s:21:\"col_responsive_shadow\";s:2:\"no\";s:16:\"col_small_shadow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899287cea\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899287cea\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":28:{s:4:\"text\";s:435:\"<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}}'),(3851,234,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(3863,423,'_fl_builder_data','a:4:{s:13:\"5dc0899282241\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899282241\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":167:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:16:\"enable_particles\";s:2:\"no\";s:24:\"uabb_row_particles_style\";s:4:\"none\";s:26:\"uabb_particles_custom_code\";s:0:\"\";s:24:\"uabb_particles_direction\";s:6:\"bottom\";s:24:\"uabb_row_particles_color\";s:0:\"\";s:32:\"uabb_row_particles_color_opacity\";s:0:\"\";s:27:\"uabb_row_particles_settings\";s:2:\"no\";s:25:\"uabb_row_number_particles\";s:0:\"\";s:23:\"uabb_row_particles_size\";s:0:\"\";s:24:\"uabb_row_particles_speed\";s:0:\"\";s:39:\"uabb_row_particles_interactive_settings\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899283f69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899283f69\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dc0899282241\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dc08992844e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08992844e7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dc0899283f69\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":107:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:22:\"uabb_col_gradient_type\";s:6:\"linear\";s:31:\"uabb_col_gradient_primary_color\";s:0:\"\";s:33:\"uabb_col_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_col_radial_direction\";s:13:\"center_center\";s:23:\"uabb_col_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_col_linear_direction\";s:2:\"24\";s:31:\"uabb_col_linear_advance_options\";s:2:\"no\";s:36:\"uabb_col_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_col_radial_advance_options\";s:2:\"no\";s:36:\"uabb_col_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_radial_gradient_secondary_loc\";s:3:\"100\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:15:\"col_drop_shadow\";s:2:\"no\";s:20:\"col_shadow_color_hor\";s:1:\"0\";s:20:\"col_shadow_color_ver\";s:1:\"0\";s:21:\"col_shadow_color_blur\";s:1:\"7\";s:20:\"col_shadow_color_spr\";s:1:\"0\";s:16:\"col_shadow_color\";s:21:\"rgba(168,168,168,0.5)\";s:16:\"col_hover_shadow\";s:2:\"no\";s:26:\"col_shadow_color_hor_hover\";s:1:\"0\";s:26:\"col_shadow_color_ver_hover\";s:1:\"0\";s:27:\"col_shadow_color_blur_hover\";s:2:\"10\";s:26:\"col_shadow_color_spr_hover\";s:1:\"1\";s:22:\"col_shadow_color_hover\";s:21:\"rgba(168,168,168,0.9)\";s:27:\"col_shadow_hover_transition\";i:200;s:21:\"col_responsive_shadow\";s:2:\"no\";s:16:\"col_small_shadow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899287cea\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899287cea\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":28:{s:4:\"text\";s:435:\"<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}}'),(3852,234,'_fl_builder_enabled','1'),(3853,418,'_fl_builder_data','a:5:{s:13:\"5dc0899282241\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899282241\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":167:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:16:\"enable_particles\";s:2:\"no\";s:24:\"uabb_row_particles_style\";s:4:\"none\";s:26:\"uabb_particles_custom_code\";s:0:\"\";s:24:\"uabb_particles_direction\";s:6:\"bottom\";s:24:\"uabb_row_particles_color\";s:0:\"\";s:32:\"uabb_row_particles_color_opacity\";s:0:\"\";s:27:\"uabb_row_particles_settings\";s:2:\"no\";s:25:\"uabb_row_number_particles\";s:0:\"\";s:23:\"uabb_row_particles_size\";s:0:\"\";s:24:\"uabb_row_particles_speed\";s:0:\"\";s:39:\"uabb_row_particles_interactive_settings\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899283f69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899283f69\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dc0899282241\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dc08992844e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08992844e7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dc0899283f69\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":107:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:22:\"uabb_col_gradient_type\";s:6:\"linear\";s:31:\"uabb_col_gradient_primary_color\";s:0:\"\";s:33:\"uabb_col_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_col_radial_direction\";s:13:\"center_center\";s:23:\"uabb_col_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_col_linear_direction\";s:2:\"24\";s:31:\"uabb_col_linear_advance_options\";s:2:\"no\";s:36:\"uabb_col_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_col_radial_advance_options\";s:2:\"no\";s:36:\"uabb_col_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_radial_gradient_secondary_loc\";s:3:\"100\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:15:\"col_drop_shadow\";s:2:\"no\";s:20:\"col_shadow_color_hor\";s:1:\"0\";s:20:\"col_shadow_color_ver\";s:1:\"0\";s:21:\"col_shadow_color_blur\";s:1:\"7\";s:20:\"col_shadow_color_spr\";s:1:\"0\";s:16:\"col_shadow_color\";s:21:\"rgba(168,168,168,0.5)\";s:16:\"col_hover_shadow\";s:2:\"no\";s:26:\"col_shadow_color_hor_hover\";s:1:\"0\";s:26:\"col_shadow_color_ver_hover\";s:1:\"0\";s:27:\"col_shadow_color_blur_hover\";s:2:\"10\";s:26:\"col_shadow_color_spr_hover\";s:1:\"1\";s:22:\"col_shadow_color_hover\";s:21:\"rgba(168,168,168,0.9)\";s:27:\"col_shadow_hover_transition\";i:200;s:21:\"col_responsive_shadow\";s:2:\"no\";s:16:\"col_small_shadow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899287cea\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899287cea\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":28:{s:4:\"text\";s:435:\"<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5dc08bfbcc9a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08bfbcc9a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":52:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"417\";s:9:\"photo_src\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:417;s:5:\"title\";s:33:\"Screenshot_20191104-123535_Chrome\";s:8:\"filename\";s:37:\"Screenshot_20191104-123535_Chrome.jpg\";s:3:\"url\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:4:\"link\";s:76:\"http://remoterangler.com/buyersguide/screenshot_20191104-123535_chrome/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"screenshot_20191104-123535_chrome\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:234;s:4:\"date\";i:1572899873000;s:8:\"modified\";i:1572899873000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"November 4, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"729e465ff9\";s:6:\"delete\";s:10:\"3ff8cfd0bc\";s:4:\"edit\";s:10:\"55e08c13d6\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=417&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=234&action=edit\";s:15:\"uploadedToTitle\";s:28:\"Remote Rangler Buyer\'s Guide\";s:15:\"filesizeInBytes\";i:537061;s:21:\"filesizeHumanReadable\";s:6:\"524 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2464;s:5:\"width\";i:1440;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:97:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:175;s:3:\"url\";s:97:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-175x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:598;s:3:\"url\";s:98:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-598x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:6:\"height\";i:2464;s:5:\"width\";i:1440;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}}'),(3854,418,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(3855,419,'_fl_builder_data','a:5:{s:13:\"5dc0899282241\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899282241\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":167:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:16:\"enable_particles\";s:2:\"no\";s:24:\"uabb_row_particles_style\";s:4:\"none\";s:26:\"uabb_particles_custom_code\";s:0:\"\";s:24:\"uabb_particles_direction\";s:6:\"bottom\";s:24:\"uabb_row_particles_color\";s:0:\"\";s:32:\"uabb_row_particles_color_opacity\";s:0:\"\";s:27:\"uabb_row_particles_settings\";s:2:\"no\";s:25:\"uabb_row_number_particles\";s:0:\"\";s:23:\"uabb_row_particles_size\";s:0:\"\";s:24:\"uabb_row_particles_speed\";s:0:\"\";s:39:\"uabb_row_particles_interactive_settings\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899283f69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899283f69\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dc0899282241\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dc08992844e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08992844e7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dc0899283f69\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":107:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:22:\"uabb_col_gradient_type\";s:6:\"linear\";s:31:\"uabb_col_gradient_primary_color\";s:0:\"\";s:33:\"uabb_col_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_col_radial_direction\";s:13:\"center_center\";s:23:\"uabb_col_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_col_linear_direction\";s:2:\"24\";s:31:\"uabb_col_linear_advance_options\";s:2:\"no\";s:36:\"uabb_col_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_col_radial_advance_options\";s:2:\"no\";s:36:\"uabb_col_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_radial_gradient_secondary_loc\";s:3:\"100\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:15:\"col_drop_shadow\";s:2:\"no\";s:20:\"col_shadow_color_hor\";s:1:\"0\";s:20:\"col_shadow_color_ver\";s:1:\"0\";s:21:\"col_shadow_color_blur\";s:1:\"7\";s:20:\"col_shadow_color_spr\";s:1:\"0\";s:16:\"col_shadow_color\";s:21:\"rgba(168,168,168,0.5)\";s:16:\"col_hover_shadow\";s:2:\"no\";s:26:\"col_shadow_color_hor_hover\";s:1:\"0\";s:26:\"col_shadow_color_ver_hover\";s:1:\"0\";s:27:\"col_shadow_color_blur_hover\";s:2:\"10\";s:26:\"col_shadow_color_spr_hover\";s:1:\"1\";s:22:\"col_shadow_color_hover\";s:21:\"rgba(168,168,168,0.9)\";s:27:\"col_shadow_hover_transition\";i:200;s:21:\"col_responsive_shadow\";s:2:\"no\";s:16:\"col_small_shadow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899287cea\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899287cea\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":28:{s:4:\"text\";s:435:\"<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5dc08bfbcc9a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08bfbcc9a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":52:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"417\";s:9:\"photo_src\";s:98:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-598x1024.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:0:\"\";s:8:\"link_url\";s:0:\"\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:417;s:5:\"title\";s:33:\"Screenshot_20191104-123535_Chrome\";s:8:\"filename\";s:37:\"Screenshot_20191104-123535_Chrome.jpg\";s:3:\"url\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:4:\"link\";s:76:\"http://remoterangler.com/buyersguide/screenshot_20191104-123535_chrome/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"screenshot_20191104-123535_chrome\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:234;s:4:\"date\";i:1572899873000;s:8:\"modified\";i:1572899873000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"November 4, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"729e465ff9\";s:6:\"delete\";s:10:\"3ff8cfd0bc\";s:4:\"edit\";s:10:\"55e08c13d6\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=417&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=234&action=edit\";s:15:\"uploadedToTitle\";s:28:\"Remote Rangler Buyer\'s Guide\";s:15:\"filesizeInBytes\";i:537061;s:21:\"filesizeHumanReadable\";s:6:\"524 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2464;s:5:\"width\";i:1440;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:97:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:175;s:3:\"url\";s:97:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-175x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:598;s:3:\"url\";s:98:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-598x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:6:\"height\";i:2464;s:5:\"width\";i:1440;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}}'),(3856,419,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(3857,420,'_fl_builder_data','a:5:{s:13:\"5dc0899282241\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899282241\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":167:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:16:\"enable_particles\";s:2:\"no\";s:24:\"uabb_row_particles_style\";s:4:\"none\";s:26:\"uabb_particles_custom_code\";s:0:\"\";s:24:\"uabb_particles_direction\";s:6:\"bottom\";s:24:\"uabb_row_particles_color\";s:0:\"\";s:32:\"uabb_row_particles_color_opacity\";s:0:\"\";s:27:\"uabb_row_particles_settings\";s:2:\"no\";s:25:\"uabb_row_number_particles\";s:0:\"\";s:23:\"uabb_row_particles_size\";s:0:\"\";s:24:\"uabb_row_particles_speed\";s:0:\"\";s:39:\"uabb_row_particles_interactive_settings\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899283f69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899283f69\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dc0899282241\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dc08992844e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08992844e7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dc0899283f69\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":107:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:22:\"uabb_col_gradient_type\";s:6:\"linear\";s:31:\"uabb_col_gradient_primary_color\";s:0:\"\";s:33:\"uabb_col_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_col_radial_direction\";s:13:\"center_center\";s:23:\"uabb_col_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_col_linear_direction\";s:2:\"24\";s:31:\"uabb_col_linear_advance_options\";s:2:\"no\";s:36:\"uabb_col_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_col_radial_advance_options\";s:2:\"no\";s:36:\"uabb_col_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_radial_gradient_secondary_loc\";s:3:\"100\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:15:\"col_drop_shadow\";s:2:\"no\";s:20:\"col_shadow_color_hor\";s:1:\"0\";s:20:\"col_shadow_color_ver\";s:1:\"0\";s:21:\"col_shadow_color_blur\";s:1:\"7\";s:20:\"col_shadow_color_spr\";s:1:\"0\";s:16:\"col_shadow_color\";s:21:\"rgba(168,168,168,0.5)\";s:16:\"col_hover_shadow\";s:2:\"no\";s:26:\"col_shadow_color_hor_hover\";s:1:\"0\";s:26:\"col_shadow_color_ver_hover\";s:1:\"0\";s:27:\"col_shadow_color_blur_hover\";s:2:\"10\";s:26:\"col_shadow_color_spr_hover\";s:1:\"1\";s:22:\"col_shadow_color_hover\";s:21:\"rgba(168,168,168,0.9)\";s:27:\"col_shadow_hover_transition\";i:200;s:21:\"col_responsive_shadow\";s:2:\"no\";s:16:\"col_small_shadow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899287cea\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899287cea\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":28:{s:4:\"text\";s:435:\"<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5dc08bfbcc9a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08bfbcc9a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":52:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"417\";s:9:\"photo_src\";s:98:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-598x1024.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:1:\"0\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:3:\"url\";s:8:\"link_url\";s:114:\"https://www.amazon.com/Universal-Portable-Remote-Holders-Rangler/dp/B07CLFDMHN/ref=cm_cr_arp_d_product_top?ie=UTF8\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:417;s:5:\"title\";s:33:\"Screenshot_20191104-123535_Chrome\";s:8:\"filename\";s:37:\"Screenshot_20191104-123535_Chrome.jpg\";s:3:\"url\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:4:\"link\";s:76:\"http://remoterangler.com/buyersguide/screenshot_20191104-123535_chrome/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:4:\"name\";s:33:\"screenshot_20191104-123535_chrome\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:234;s:4:\"date\";i:1572899873000;s:8:\"modified\";i:1572899873000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"November 4, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"729e465ff9\";s:6:\"delete\";s:10:\"3ff8cfd0bc\";s:4:\"edit\";s:10:\"55e08c13d6\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=417&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=234&action=edit\";s:15:\"uploadedToTitle\";s:28:\"Remote Rangler Buyer\'s Guide\";s:15:\"filesizeInBytes\";i:537061;s:21:\"filesizeHumanReadable\";s:6:\"524 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2464;s:5:\"width\";i:1440;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:97:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:175;s:3:\"url\";s:97:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-175x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:598;s:3:\"url\";s:98:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-598x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:6:\"height\";i:2464;s:5:\"width\";i:1440;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}}'),(3858,420,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(3859,421,'_fl_builder_data','a:5:{s:13:\"5dc0899282241\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899282241\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":167:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:16:\"enable_particles\";s:2:\"no\";s:24:\"uabb_row_particles_style\";s:4:\"none\";s:26:\"uabb_particles_custom_code\";s:0:\"\";s:24:\"uabb_particles_direction\";s:6:\"bottom\";s:24:\"uabb_row_particles_color\";s:0:\"\";s:32:\"uabb_row_particles_color_opacity\";s:0:\"\";s:27:\"uabb_row_particles_settings\";s:2:\"no\";s:25:\"uabb_row_number_particles\";s:0:\"\";s:23:\"uabb_row_particles_size\";s:0:\"\";s:24:\"uabb_row_particles_speed\";s:0:\"\";s:39:\"uabb_row_particles_interactive_settings\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899283f69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899283f69\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dc0899282241\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dc08992844e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08992844e7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dc0899283f69\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":107:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:22:\"uabb_col_gradient_type\";s:6:\"linear\";s:31:\"uabb_col_gradient_primary_color\";s:0:\"\";s:33:\"uabb_col_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_col_radial_direction\";s:13:\"center_center\";s:23:\"uabb_col_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_col_linear_direction\";s:2:\"24\";s:31:\"uabb_col_linear_advance_options\";s:2:\"no\";s:36:\"uabb_col_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_col_radial_advance_options\";s:2:\"no\";s:36:\"uabb_col_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_radial_gradient_secondary_loc\";s:3:\"100\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:15:\"col_drop_shadow\";s:2:\"no\";s:20:\"col_shadow_color_hor\";s:1:\"0\";s:20:\"col_shadow_color_ver\";s:1:\"0\";s:21:\"col_shadow_color_blur\";s:1:\"7\";s:20:\"col_shadow_color_spr\";s:1:\"0\";s:16:\"col_shadow_color\";s:21:\"rgba(168,168,168,0.5)\";s:16:\"col_hover_shadow\";s:2:\"no\";s:26:\"col_shadow_color_hor_hover\";s:1:\"0\";s:26:\"col_shadow_color_ver_hover\";s:1:\"0\";s:27:\"col_shadow_color_blur_hover\";s:2:\"10\";s:26:\"col_shadow_color_spr_hover\";s:1:\"1\";s:22:\"col_shadow_color_hover\";s:21:\"rgba(168,168,168,0.9)\";s:27:\"col_shadow_hover_transition\";i:200;s:21:\"col_responsive_shadow\";s:2:\"no\";s:16:\"col_small_shadow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899287cea\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899287cea\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":28:{s:4:\"text\";s:435:\"<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5dc08bfbcc9a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08bfbcc9a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":52:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"417\";s:9:\"photo_src\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:5:\"below\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:3:\"url\";s:8:\"link_url\";s:114:\"https://www.amazon.com/Universal-Portable-Remote-Holders-Rangler/dp/B07CLFDMHN/ref=cm_cr_arp_d_product_top?ie=UTF8\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"30\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:417;s:5:\"title\";s:33:\"Screenshot_20191104-123535_Chrome\";s:8:\"filename\";s:37:\"Screenshot_20191104-123535_Chrome.jpg\";s:3:\"url\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:4:\"link\";s:76:\"http://remoterangler.com/buyersguide/screenshot_20191104-123535_chrome/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:37:\"Click The Picture to see it on Amazon\";s:4:\"name\";s:33:\"screenshot_20191104-123535_chrome\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:234;s:4:\"date\";i:1572899873000;s:8:\"modified\";i:1572900638000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"November 4, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"729e465ff9\";s:6:\"delete\";s:10:\"3ff8cfd0bc\";s:4:\"edit\";s:10:\"55e08c13d6\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=417&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=234&action=edit\";s:15:\"uploadedToTitle\";s:28:\"Remote Rangler Buyer\'s Guide\";s:15:\"filesizeInBytes\";i:537061;s:21:\"filesizeHumanReadable\";s:6:\"524 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2464;s:5:\"width\";i:1440;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:97:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:175;s:3:\"url\";s:97:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-175x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:598;s:3:\"url\";s:98:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-598x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:6:\"height\";i:2464;s:5:\"width\";i:1440;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}}'),(3860,421,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}'),(3861,422,'_fl_builder_data','a:5:{s:13:\"5dc0899282241\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899282241\";s:4:\"type\";s:3:\"row\";s:6:\"parent\";N;s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":167:{s:5:\"width\";s:5:\"fixed\";s:13:\"content_width\";s:5:\"fixed\";s:17:\"max_content_width\";s:0:\"\";s:22:\"max_content_width_unit\";s:2:\"px\";s:11:\"full_height\";s:7:\"default\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:17:\"content_alignment\";s:6:\"center\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:4:\"none\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_video_source\";s:9:\"wordpress\";s:8:\"bg_video\";s:0:\"\";s:13:\"bg_video_webm\";s:0:\"\";s:16:\"bg_video_url_mp4\";s:0:\"\";s:17:\"bg_video_url_webm\";s:0:\"\";s:20:\"bg_video_service_url\";s:0:\"\";s:14:\"bg_video_audio\";s:2:\"no\";s:17:\"bg_video_fallback\";s:0:\"\";s:21:\"bg_video_fallback_src\";s:0:\"\";s:9:\"ss_source\";s:9:\"wordpress\";s:9:\"ss_photos\";s:0:\"\";s:11:\"ss_feed_url\";s:0:\"\";s:8:\"ss_speed\";s:1:\"3\";s:13:\"ss_transition\";s:4:\"fade\";s:21:\"ss_transitionDuration\";s:1:\"1\";s:12:\"ss_randomize\";s:5:\"false\";s:17:\"bg_parallax_image\";s:0:\"\";s:21:\"bg_parallax_image_src\";s:0:\"\";s:17:\"bg_parallax_speed\";s:4:\"fast\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:14:\"top_edge_shape\";s:0:\"\";s:14:\"top_edge_align\";s:10:\"top center\";s:19:\"top_edge_fill_style\";s:5:\"color\";s:19:\"top_edge_fill_color\";s:3:\"aaa\";s:26:\"top_edge_fill_color_medium\";s:0:\"\";s:30:\"top_edge_fill_color_responsive\";s:0:\"\";s:22:\"top_edge_fill_gradient\";s:0:\"\";s:18:\"top_edge_transform\";s:0:\"\";s:17:\"bottom_edge_shape\";s:0:\"\";s:17:\"bottom_edge_align\";s:13:\"bottom center\";s:22:\"bottom_edge_fill_style\";s:5:\"color\";s:22:\"bottom_edge_fill_color\";s:3:\"aaa\";s:29:\"bottom_edge_fill_color_medium\";s:0:\"\";s:33:\"bottom_edge_fill_color_responsive\";s:0:\"\";s:25:\"bottom_edge_fill_gradient\";s:0:\"\";s:21:\"bottom_edge_transform\";s:0:\"\";s:18:\"container_overflow\";s:0:\"\";s:22:\"uabb_row_gradient_type\";s:6:\"linear\";s:31:\"uabb_row_gradient_primary_color\";s:0:\"\";s:33:\"uabb_row_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_row_radial_direction\";s:13:\"center_center\";s:23:\"uabb_row_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_row_linear_direction\";s:2:\"90\";s:31:\"uabb_row_linear_advance_options\";s:2:\"no\";s:36:\"uabb_row_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_row_radial_advance_options\";s:2:\"no\";s:36:\"uabb_row_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_row_radial_gradient_secondary_loc\";s:3:\"100\";s:15:\"separator_shape\";s:4:\"none\";s:21:\"separator_shape_width\";s:3:\"100\";s:28:\"separator_shape_width_medium\";s:3:\"100\";s:32:\"separator_shape_width_responsive\";s:0:\"\";s:22:\"separator_shape_height\";s:2:\"60\";s:29:\"separator_shape_height_medium\";s:0:\"\";s:33:\"separator_shape_height_responsive\";s:0:\"\";s:24:\"uabb_row_separator_color\";s:0:\"\";s:28:\"uabb_row_separator_color_opc\";s:3:\"100\";s:26:\"uabb_row_separator_z_index\";s:3:\"yes\";s:19:\"bot_separator_shape\";s:4:\"none\";s:25:\"bot_separator_shape_width\";s:3:\"100\";s:32:\"bot_separator_shape_width_medium\";s:3:\"100\";s:36:\"bot_separator_shape_width_responsive\";s:0:\"\";s:26:\"bot_separator_shape_height\";s:2:\"60\";s:33:\"bot_separator_shape_height_medium\";s:0:\"\";s:37:\"bot_separator_shape_height_responsive\";s:0:\"\";s:19:\"bot_separator_color\";s:0:\"\";s:23:\"bot_separator_color_opc\";s:3:\"100\";s:21:\"bot_separator_z_index\";s:3:\"yes\";s:16:\"enable_particles\";s:2:\"no\";s:24:\"uabb_row_particles_style\";s:4:\"none\";s:26:\"uabb_particles_custom_code\";s:0:\"\";s:24:\"uabb_particles_direction\";s:6:\"bottom\";s:24:\"uabb_row_particles_color\";s:0:\"\";s:32:\"uabb_row_particles_color_opacity\";s:0:\"\";s:27:\"uabb_row_particles_settings\";s:2:\"no\";s:25:\"uabb_row_number_particles\";s:0:\"\";s:23:\"uabb_row_particles_size\";s:0:\"\";s:24:\"uabb_row_particles_speed\";s:0:\"\";s:39:\"uabb_row_particles_interactive_settings\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:19:\"top_edge_size_width\";s:0:\"\";s:18:\"top_edge_size_unit\";s:2:\"px\";s:20:\"top_edge_size_height\";s:0:\"\";s:17:\"top_edge_size_top\";s:0:\"\";s:22:\"bottom_edge_size_width\";s:0:\"\";s:21:\"bottom_edge_size_unit\";s:2:\"px\";s:23:\"bottom_edge_size_height\";s:0:\"\";s:20:\"bottom_edge_size_top\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899283f69\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899283f69\";s:4:\"type\";s:12:\"column-group\";s:6:\"parent\";s:13:\"5dc0899282241\";s:8:\"position\";i:0;s:8:\"settings\";s:0:\"\";}s:13:\"5dc08992844e7\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08992844e7\";s:4:\"type\";s:6:\"column\";s:6:\"parent\";s:13:\"5dc0899283f69\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":107:{s:4:\"size\";i:100;s:11:\"size_medium\";s:0:\"\";s:15:\"size_responsive\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:15:\"min_height_unit\";s:2:\"px\";s:17:\"min_height_medium\";s:0:\"\";s:22:\"min_height_medium_unit\";s:2:\"px\";s:21:\"min_height_responsive\";s:0:\"\";s:26:\"min_height_responsive_unit\";s:2:\"px\";s:12:\"equal_height\";s:2:\"no\";s:17:\"content_alignment\";s:3:\"top\";s:10:\"text_color\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:11:\"hover_color\";s:0:\"\";s:13:\"heading_color\";s:0:\"\";s:7:\"bg_type\";s:5:\"color\";s:8:\"bg_color\";s:0:\"\";s:11:\"bg_gradient\";s:0:\"\";s:8:\"bg_image\";s:0:\"\";s:12:\"bg_image_src\";s:0:\"\";s:15:\"bg_image_medium\";s:0:\"\";s:19:\"bg_image_medium_src\";s:0:\"\";s:19:\"bg_image_responsive\";s:0:\"\";s:23:\"bg_image_responsive_src\";s:0:\"\";s:9:\"bg_repeat\";s:4:\"none\";s:16:\"bg_repeat_medium\";s:0:\"\";s:20:\"bg_repeat_responsive\";s:0:\"\";s:11:\"bg_position\";s:13:\"center center\";s:18:\"bg_position_medium\";s:0:\"\";s:22:\"bg_position_responsive\";s:0:\"\";s:13:\"bg_attachment\";s:6:\"scroll\";s:20:\"bg_attachment_medium\";s:0:\"\";s:24:\"bg_attachment_responsive\";s:0:\"\";s:7:\"bg_size\";s:5:\"cover\";s:14:\"bg_size_medium\";s:0:\"\";s:18:\"bg_size_responsive\";s:0:\"\";s:15:\"bg_overlay_type\";s:5:\"color\";s:16:\"bg_overlay_color\";s:0:\"\";s:19:\"bg_overlay_gradient\";s:0:\"\";s:22:\"uabb_col_gradient_type\";s:6:\"linear\";s:31:\"uabb_col_gradient_primary_color\";s:0:\"\";s:33:\"uabb_col_gradient_secondary_color\";s:0:\"\";s:25:\"uabb_col_radial_direction\";s:13:\"center_center\";s:23:\"uabb_col_uabb_direction\";s:6:\"bottom\";s:25:\"uabb_col_linear_direction\";s:2:\"24\";s:31:\"uabb_col_linear_advance_options\";s:2:\"no\";s:36:\"uabb_col_linear_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_linear_gradient_secondary_loc\";s:3:\"100\";s:31:\"uabb_col_radial_advance_options\";s:2:\"no\";s:36:\"uabb_col_radial_gradient_primary_loc\";s:1:\"0\";s:38:\"uabb_col_radial_gradient_secondary_loc\";s:3:\"100\";s:6:\"border\";s:0:\"\";s:13:\"border_medium\";s:0:\"\";s:17:\"border_responsive\";s:0:\"\";s:15:\"col_drop_shadow\";s:2:\"no\";s:20:\"col_shadow_color_hor\";s:1:\"0\";s:20:\"col_shadow_color_ver\";s:1:\"0\";s:21:\"col_shadow_color_blur\";s:1:\"7\";s:20:\"col_shadow_color_spr\";s:1:\"0\";s:16:\"col_shadow_color\";s:21:\"rgba(168,168,168,0.5)\";s:16:\"col_hover_shadow\";s:2:\"no\";s:26:\"col_shadow_color_hor_hover\";s:1:\"0\";s:26:\"col_shadow_color_ver_hover\";s:1:\"0\";s:27:\"col_shadow_color_blur_hover\";s:2:\"10\";s:26:\"col_shadow_color_spr_hover\";s:1:\"1\";s:22:\"col_shadow_color_hover\";s:21:\"rgba(168,168,168,0.9)\";s:27:\"col_shadow_hover_transition\";i:200;s:21:\"col_responsive_shadow\";s:2:\"no\";s:16:\"col_small_shadow\";s:2:\"no\";s:18:\"responsive_display\";s:0:\"\";s:16:\"responsive_order\";s:7:\"default\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:11:\"padding_top\";s:0:\"\";s:12:\"padding_unit\";s:2:\"px\";s:18:\"padding_top_medium\";s:0:\"\";s:19:\"padding_medium_unit\";s:2:\"px\";s:22:\"padding_top_responsive\";s:0:\"\";s:23:\"padding_responsive_unit\";s:2:\"px\";s:13:\"padding_right\";s:0:\"\";s:20:\"padding_right_medium\";s:0:\"\";s:24:\"padding_right_responsive\";s:0:\"\";s:14:\"padding_bottom\";s:0:\"\";s:21:\"padding_bottom_medium\";s:0:\"\";s:25:\"padding_bottom_responsive\";s:0:\"\";s:12:\"padding_left\";s:0:\"\";s:19:\"padding_left_medium\";s:0:\"\";s:23:\"padding_left_responsive\";s:0:\"\";}}s:13:\"5dc0899287cea\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc0899287cea\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:0;s:8:\"settings\";O:8:\"stdClass\":28:{s:4:\"text\";s:435:\"<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>\";s:5:\"color\";s:0:\"\";s:10:\"typography\";s:0:\"\";s:17:\"typography_medium\";s:0:\"\";s:21:\"typography_responsive\";s:0:\"\";s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";s:0:\"\";s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:9:\"rich-text\";}}s:13:\"5dc08bfbcc9a4\";O:8:\"stdClass\":5:{s:4:\"node\";s:13:\"5dc08bfbcc9a4\";s:4:\"type\";s:6:\"module\";s:6:\"parent\";s:13:\"5dc08992844e7\";s:8:\"position\";i:1;s:8:\"settings\";O:8:\"stdClass\":52:{s:12:\"photo_source\";s:7:\"library\";s:5:\"photo\";s:3:\"417\";s:9:\"photo_src\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:9:\"photo_url\";s:0:\"\";s:12:\"show_caption\";s:5:\"below\";s:7:\"caption\";s:0:\"\";s:9:\"link_type\";s:3:\"url\";s:8:\"link_url\";s:114:\"https://www.amazon.com/Universal-Portable-Remote-Holders-Rangler/dp/B07CLFDMHN/ref=cm_cr_arp_d_product_top?ie=UTF8\";s:15:\"link_url_target\";s:5:\"_self\";s:17:\"link_url_nofollow\";s:2:\"no\";s:4:\"crop\";s:0:\"\";s:5:\"width\";s:0:\"\";s:10:\"width_unit\";s:2:\"px\";s:12:\"width_medium\";s:0:\"\";s:17:\"width_medium_unit\";s:2:\"px\";s:16:\"width_responsive\";s:0:\"\";s:21:\"width_responsive_unit\";s:2:\"px\";s:5:\"align\";s:6:\"center\";s:12:\"align_medium\";s:0:\"\";s:16:\"align_responsive\";s:0:\"\";s:6:\"border\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:13:\"border_medium\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:17:\"border_responsive\";a:5:{s:5:\"style\";s:0:\"\";s:5:\"color\";s:0:\"\";s:5:\"width\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"radius\";a:4:{s:8:\"top_left\";s:0:\"\";s:9:\"top_right\";s:0:\"\";s:11:\"bottom_left\";s:0:\"\";s:12:\"bottom_right\";s:0:\"\";}s:6:\"shadow\";a:5:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";s:6:\"spread\";s:0:\"\";}}s:18:\"caption_typography\";a:11:{s:11:\"font_family\";s:7:\"Default\";s:11:\"font_weight\";s:7:\"default\";s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:25:\"caption_typography_medium\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:2:\"30\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:29:\"caption_typography_responsive\";a:9:{s:9:\"font_size\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}s:11:\"line_height\";a:2:{s:6:\"length\";s:0:\"\";s:4:\"unit\";s:0:\"\";}s:10:\"text_align\";s:0:\"\";s:14:\"letter_spacing\";a:1:{s:6:\"length\";s:0:\"\";}s:14:\"text_transform\";s:0:\"\";s:15:\"text_decoration\";s:0:\"\";s:10:\"font_style\";s:0:\"\";s:12:\"font_variant\";s:0:\"\";s:11:\"text_shadow\";a:4:{s:5:\"color\";s:0:\"\";s:10:\"horizontal\";s:0:\"\";s:8:\"vertical\";s:0:\"\";s:4:\"blur\";s:0:\"\";}}s:18:\"responsive_display\";s:0:\"\";s:18:\"visibility_display\";s:0:\"\";s:26:\"visibility_user_capability\";s:0:\"\";s:9:\"animation\";a:3:{s:5:\"style\";s:0:\"\";s:5:\"delay\";s:1:\"0\";s:8:\"duration\";s:1:\"1\";}s:17:\"container_element\";s:3:\"div\";s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:10:\"margin_top\";s:0:\"\";s:11:\"margin_unit\";s:2:\"px\";s:17:\"margin_top_medium\";s:0:\"\";s:18:\"margin_medium_unit\";s:2:\"px\";s:21:\"margin_top_responsive\";s:0:\"\";s:22:\"margin_responsive_unit\";s:2:\"px\";s:12:\"margin_right\";s:0:\"\";s:19:\"margin_right_medium\";s:0:\"\";s:23:\"margin_right_responsive\";s:0:\"\";s:13:\"margin_bottom\";s:0:\"\";s:20:\"margin_bottom_medium\";s:0:\"\";s:24:\"margin_bottom_responsive\";s:0:\"\";s:11:\"margin_left\";s:0:\"\";s:18:\"margin_left_medium\";s:0:\"\";s:22:\"margin_left_responsive\";s:0:\"\";s:4:\"type\";s:5:\"photo\";s:4:\"data\";O:8:\"stdClass\":33:{s:2:\"id\";i:417;s:5:\"title\";s:33:\"Screenshot_20191104-123535_Chrome\";s:8:\"filename\";s:37:\"Screenshot_20191104-123535_Chrome.jpg\";s:3:\"url\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:4:\"link\";s:76:\"http://remoterangler.com/buyersguide/screenshot_20191104-123535_chrome/#main\";s:3:\"alt\";s:0:\"\";s:6:\"author\";s:1:\"1\";s:11:\"description\";s:0:\"\";s:7:\"caption\";s:37:\"Click The Picture to see it on Amazon\";s:4:\"name\";s:33:\"screenshot_20191104-123535_chrome\";s:6:\"status\";s:7:\"inherit\";s:10:\"uploadedTo\";i:234;s:4:\"date\";i:1572899873000;s:8:\"modified\";i:1572900638000;s:9:\"menuOrder\";i:0;s:4:\"mime\";s:10:\"image/jpeg\";s:4:\"type\";s:5:\"image\";s:7:\"subtype\";s:4:\"jpeg\";s:4:\"icon\";s:61:\"http://remoterangler.com/wp-includes/images/media/default.png\";s:13:\"dateFormatted\";s:16:\"November 4, 2019\";s:6:\"nonces\";O:8:\"stdClass\":3:{s:6:\"update\";s:10:\"729e465ff9\";s:6:\"delete\";s:10:\"3ff8cfd0bc\";s:4:\"edit\";s:10:\"55e08c13d6\";}s:8:\"editLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=417&action=edit\";s:4:\"meta\";b:0;s:10:\"authorName\";s:14:\"Remote Rangler\";s:14:\"uploadedToLink\";s:63:\"http://remoterangler.com/wp-admin/post.php?post=234&action=edit\";s:15:\"uploadedToTitle\";s:28:\"Remote Rangler Buyer\'s Guide\";s:15:\"filesizeInBytes\";i:537061;s:21:\"filesizeHumanReadable\";s:6:\"524 KB\";s:7:\"context\";s:0:\"\";s:6:\"height\";i:2464;s:5:\"width\";i:1440;s:11:\"orientation\";s:8:\"portrait\";s:5:\"sizes\";O:8:\"stdClass\":4:{s:9:\"thumbnail\";O:8:\"stdClass\":4:{s:6:\"height\";i:150;s:5:\"width\";i:150;s:3:\"url\";s:97:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-150x150.jpg\";s:11:\"orientation\";s:9:\"landscape\";}s:6:\"medium\";O:8:\"stdClass\":4:{s:6:\"height\";i:300;s:5:\"width\";i:175;s:3:\"url\";s:97:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-175x300.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:5:\"large\";O:8:\"stdClass\":4:{s:6:\"height\";i:1024;s:5:\"width\";i:598;s:3:\"url\";s:98:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-598x1024.jpg\";s:11:\"orientation\";s:8:\"portrait\";}s:4:\"full\";O:8:\"stdClass\":4:{s:3:\"url\";s:89:\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\";s:6:\"height\";i:2464;s:5:\"width\";i:1440;s:11:\"orientation\";s:8:\"portrait\";}}}s:15:\"link_url-search\";s:0:\"\";s:25:\"as_values_link_url-search\";s:0:\"\";}}}'),(3862,422,'_fl_builder_data_settings','O:8:\"stdClass\":2:{s:3:\"css\";s:0:\"\";s:2:\"js\";s:0:\"\";}');
/*!40000 ALTER TABLE `wprl_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_posts`
--

DROP TABLE IF EXISTS `wprl_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=431 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_posts`
--

LOCK TABLES `wprl_posts` WRITE;
/*!40000 ALTER TABLE `wprl_posts` DISABLE KEYS */;
INSERT INTO `wprl_posts` VALUES (1,1,'2018-02-02 04:24:21','2018-02-02 04:24:21','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2018-02-02 04:24:21','2018-02-02 04:24:21','',0,'http://remoterangler.com/?p=1',0,'post','',0),(2,1,'2018-02-02 04:24:21','2018-02-02 04:24:21','<h1>\n		End The Search For The Remotes!\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/G-aqHkBC2-o?autoplay=1\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\" title=\"20180308_200016\"  />\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\" title=\"20180405_230244\"  />\n	<h2>Universal - Fits All Remotes</h2>\n<p>Elastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\" title=\"20180405_220150\"  />\n	<h2>Keeps Your Batteries Covered</h2>\n<p>Did the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\" alt=\"20180430_015733\" itemprop=\"image\" height=\"1024\" width=\"572\" title=\"20180430_015733\"  />\n	<h2>Hang Them Up Anywhere!</h2>\n<p>Find them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.</p>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n','How It Works','','publish','closed','open','','howitworks','','','2018-05-15 00:42:39','2018-05-15 00:42:39','',0,'http://remoterangler.com/?page_id=2',0,'page','',0),(82,1,'2018-04-26 09:01:34','2018-04-26 09:01:34','','Products','','publish','closed','closed','','products','','','2018-04-26 10:59:25','2018-04-26 10:59:25','',0,'http://remoterangler.com/shop/',0,'page','',0),(83,1,'2018-04-26 09:01:34','2018-04-26 09:01:34','[woocommerce_cart]','Cart','','publish','closed','closed','','cart','','','2018-04-26 10:49:01','2018-04-26 10:49:01','',0,'http://remoterangler.com/cart/',0,'page','',0),(84,1,'2018-04-26 09:01:34','2018-04-26 09:01:34','[woocommerce_checkout]','Checkout','','publish','closed','closed','','checkout','','','2018-04-26 09:01:34','2018-04-26 09:01:34','',0,'http://remoterangler.com/checkout/',0,'page','',0),(85,1,'2018-04-26 09:01:34','2018-04-26 09:01:34','[woocommerce_my_account]','My account','','publish','closed','closed','','my-account','','','2018-04-26 10:04:25','2018-04-26 10:04:25','',0,'http://remoterangler.com/my-account/',0,'page','',0),(86,1,'2018-04-26 09:08:06','0000-00-00 00:00:00','','widget_image','','draft','closed','closed','','','','','2018-04-26 09:08:06','0000-00-00 00:00:00','a:1:{s:12:\"_multiwidget\";i:1;}',0,'http://remoterangler.com/?post_type=jetpack_migration&p=86',0,'jetpack_migration','',0),(87,1,'2018-04-26 09:08:06','0000-00-00 00:00:00','','sidebars_widgets','','draft','closed','closed','','','','','2018-04-26 09:08:06','0000-00-00 00:00:00','a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-8\";}s:9:\"sidebar-3\";a:2:{i:0;s:6:\"text-9\";i:1;s:8:\"search-4\";}s:8:\"footer-1\";a:1:{i:0;s:13:\"media_image-3\";}s:8:\"footer-2\";a:1:{i:0;s:13:\"media_image-4\";}s:8:\"footer-3\";a:1:{i:0;s:13:\"media_image-5\";}}',0,'http://remoterangler.com/?post_type=jetpack_migration&p=87',0,'jetpack_migration','',0),(89,1,'2018-04-26 09:13:49','2018-04-26 09:13:49','SATISFACTION GUARANTEED!!!!!!!! A Universal Remote Control attachment that fits all your remotes. Invented for people who have more than one remote for their TV and are constantly misplacing one or another. Keep track of all your remotes by having them together at all times. The lanyard helps you spot your remotes when they get under your sheets or under everything else when you\'re watching TV in bed. Hang them up when your done so you can find them easier and keep your room or table clutter free from all those remotes. Comes with lanyard and 3 remote holders.','Remote Rangler 3 Holders','<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n 	<li><span class=\"a-list-item\">NEVER WORRY ABOUT LOSING YOUR REMOTES AGAIN!</span></li>\r\n 	<li><span class=\"a-list-item\">Attach all your remotes to this Remote holder</span></li>\r\n 	<li><span class=\"a-list-item\">HANG THEM UP ANYWHERE! Keep remote clutter off your tables</span></li>\r\n 	<li><span class=\"a-list-item\">This Portable Remote Caddy allows you to Find them All At Once</span></li>\r\n 	<li><span class=\"a-list-item\">COMPATIBLE with all your remote controls (including all television, cable TV, satellite TV, DVR, DVD, VCR, Blu-ray, and media-player remotes from major brands like Sony, Samsung, LG, Panasonic, Toshiba, Philips, Sharp, Vizio, Mitsubishi, Hisense, Insignia, JVC, Magnavox, Sanyo, Sylvania, Apple, Fire TV, and Roku)and any other remote you need to keep track of.</span></li>\r\n</ul>','publish','open','closed','','remote-rangler-3-holders','','','2019-11-02 12:08:14','2019-11-02 19:08:14','',0,'http://remoterangler.com/?post_type=product&#038;p=89',0,'product','',1),(90,1,'2018-04-26 09:23:05','2018-04-26 09:23:05','','Products','','inherit','closed','closed','','82-revision-v1','','','2018-04-26 09:23:05','2018-04-26 09:23:05','',82,'http://remoterangler.com/2018/04/26/82-revision-v1/',0,'revision','',0),(91,1,'2018-04-26 09:26:30','2018-04-26 09:26:30','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1904\" width=\"1176\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\" alt=\"secure-paypal-payments\" itemprop=\"image\" height=\"150\" width=\"300\"  />\n','','','inherit','closed','closed','','27-revision-v1','','','2018-04-26 09:26:30','2018-04-26 09:26:30','',27,'http://remoterangler.com/2018/04/26/27-revision-v1/',0,'revision','',0),(203,1,'2018-05-07 07:13:13','2018-05-07 07:13:13','<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf\">Click Here to see the Remote Rangler one page Summary</a>\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-pitch-deck-collab.pdf\">Click Here To See The Remote Rangler Pitch Deck</a>','Pitch Deck','','inherit','closed','closed','','123-revision-v1','','','2018-05-07 07:13:13','2018-05-07 07:13:13','',123,'http://remoterangler.com/2018/05/07/123-revision-v1/',0,'revision','',0),(204,1,'2018-05-08 01:57:56','2018-05-08 01:57:56','','Order &ndash; May 8, 2018 @ 01:57 AM','','wc-completed','closed','closed','order_5af10424a68fd','order-may-08-2018-0157-am','','','2018-05-08 02:57:13','2018-05-08 02:57:13','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=204',0,'shop_order','',2),(95,1,'2018-04-26 09:46:27','2018-04-26 09:46:27','SATISFACTION GUARANTEED!!!!!!!! A Universal Remote Control attachment that fits all your remotes. Invented for people who have more than one remote for their TV and are constantly misplacing one or another. Keep track of all your remotes by having them together at all times. The lanyard helps you spot your remotes when they get under your sheets or under everything else when you\'re watching TV in bed. Hang them up when your done so you can find them easier and keep your room or table clutter free from all those remotes. Comes with 2 lanyards and 6 Attachments for your remotes. Once you try it you will not be able to live without it.','Remote Rangler 6 Holders','<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n 	<li><span class=\"a-list-item\">NEVER WORRY ABOUT LOSING YOUR REMOTES AGAIN!</span></li>\r\n 	<li><span class=\"a-list-item\">Attach all your remotes to this Remote holder</span></li>\r\n 	<li><span class=\"a-list-item\">HANG THEM UP ANYWHERE! Keep remote clutter off your tables</span></li>\r\n 	<li><span class=\"a-list-item\">This Portable Remote Caddy allows you to Find them All At Once</span></li>\r\n 	<li><span class=\"a-list-item\">COMPATIBLE with all your remote controls (including all television, cable TV, satellite TV, DVR, DVD, VCR, Blu-ray, and media-player remotes from major brands like Sony, Samsung, LG, Panasonic, Toshiba, Philips, Sharp, Vizio, Mitsubishi, Hisense, Insignia, JVC, Magnavox, Sanyo, Sylvania, Apple, Fire TV, and Roku)and any other remote you need to keep track of.</span></li>\r\n</ul>','publish','open','closed','','remote-rangler-6-holders','','','2018-04-30 09:53:29','2018-04-30 09:53:29','',0,'http://remoterangler.com/?post_type=product&#038;p=95',0,'product','',0),(96,1,'2018-04-26 09:54:35','2018-04-26 09:54:35','[woocommerce_my_account]','My account','','inherit','closed','closed','','85-revision-v1','','','2018-04-26 09:54:35','2018-04-26 09:54:35','',85,'http://remoterangler.com/2018/04/26/85-revision-v1/',0,'revision','',0),(105,1,'2018-04-26 10:19:57','2018-04-26 10:19:57','','Home','','publish','closed','closed','','home','','','2018-04-26 10:19:57','2018-04-26 10:19:57','',0,'http://remoterangler.com/2018/04/26/home/',1,'nav_menu_item','',0),(106,1,'2018-04-26 10:19:57','2018-04-26 10:19:57',' ','','','publish','closed','closed','','106','','','2018-04-26 11:02:58','2018-04-26 11:02:58','',0,'http://remoterangler.com/2018/04/26/106/',3,'nav_menu_item','',0),(107,1,'2018-04-26 10:19:57','2018-04-26 10:19:57',' ','','','publish','closed','closed','','107','','','2018-04-26 11:02:58','2018-04-26 11:02:58','',0,'http://remoterangler.com/2018/04/26/107/',2,'nav_menu_item','',0),(108,1,'2018-04-26 10:19:57','2018-04-26 10:19:57',' ','','','publish','closed','closed','','108','','','2018-04-26 10:19:57','2018-04-26 10:19:57','',0,'http://remoterangler.com/2018/04/26/108/',4,'nav_menu_item','',0),(109,1,'2018-04-26 10:19:57','2018-04-26 10:19:57',' ','','','publish','closed','closed','','109','','','2018-04-26 10:19:57','2018-04-26 10:19:57','',0,'http://remoterangler.com/2018/04/26/109/',5,'nav_menu_item','',0),(110,1,'2018-04-26 10:19:57','2018-04-26 10:19:57',' ','','','publish','closed','closed','','110','','','2018-04-26 10:19:57','2018-04-26 10:19:57','',0,'http://remoterangler.com/2018/04/26/110/',6,'nav_menu_item','',0),(122,1,'2018-04-26 18:31:29','2018-04-26 18:31:29','<h1>About Us</h1>\r\n<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\" alt=\"20180426_003915\" width=\"1024\" height=\"744\" />\r\n<h3>Our Team</h3>\r\nThat\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of work from Honda. Just a couple of regular guys with high hopes and Big DREAMS.\r\n<h3>Our Story</h3>\r\nIt all started with the fact that I have way too many Remotes to keep track of. I kid you not, I have 8 remotes in my bedroom. It seems that the more technology that we get the more remotes we have to operate them. Let me list what my remotes go to: TV, Soundbar, Firestick, light switch, Airconditioner, an aroma diffuser and 2 fan remotes, one for me and one for my GF because she doesn\'t like it too cold. I use these remotes everyday and looking for each one became such a headache. They were either in the sheets, under the pillows, under the bed or under me sucked in by my gravitational pull as my gf puts it. I had to do something about all these remotes, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard, they\'re always nearby and plus always together. I know I can\'t be the only one with this problem, people have been losing their remotes since they were invented. I couldn\'t live without it, I wasn\'t constantly looking for the remotes, getting up and shaking the sheets to find them, they were always there and always together. That\'s when I knew other people need this product. So I created the Remote Rangler and my coworker friend Troy was one of my first customers. He loved it so much that he offered to help me launch it, and we became partners. Now we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!','About Us','','inherit','closed','closed','','28-revision-v1','','','2018-04-26 18:31:29','2018-04-26 18:31:29','',28,'http://remoterangler.com/2018/04/26/28-revision-v1/',0,'revision','',0),(111,1,'2018-04-26 10:22:07','2018-04-26 10:22:07','<h1>\n		About Us\n	</h1>\n	<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\" alt=\"20180426_003915\" itemprop=\"image\" height=\"744\" width=\"1024\"  />\n<h3>\n		Our Team\n	</h3>\n	<p>That\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of work from Honda. Just a couple of regular guys with high hopes and Big DREAMS.</p>\n<h3>\n		Our Story\n	</h3>\n	<p>It all started with the fact that I have way too many Remotes to keep track of. I kid you not, I have 8 remotes in my bedroom. It seems that the more technology that we get the more remotes we have to operate them. Let me list what my remotes go to: TV, Soundbar, Firestick, light switch, Airconditioner, an aroma diffuser and 2 fan remotes, one for me and one for my GF because she doesn\'t like it too cold. I use these remotes everyday and looking for each one became such a headache. They were either in the sheets, under the pillows, under the bed or under me sucked in by my gravitational pull as my gf puts it. I had to do something about all these remotes, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard, they\'re always nearby and plus always together. I know I can\'t be the only one with this problem, people have been losing their remotes since they were invented. I couldn\'t live without it, I wasn\'t constantly looking for the remotes, getting up and shaking the sheets to find them, they were always there and always together. That\'s when I knew other people need this product. So I created the Remote Rangler and my coworker friend Troy was one of my first customers. He loved it so much that he offered to help me launch it, and we became partners. Now we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!</p>\n','About Us','','inherit','closed','closed','','28-revision-v1','','','2018-04-26 10:22:07','2018-04-26 10:22:07','',28,'http://remoterangler.com/2018/04/26/28-revision-v1/',0,'revision','',0),(114,1,'2018-04-26 10:34:16','2018-04-26 10:34:16','<h1>\n		Contact Us\n	</h1>\n<h3>\n		CONNECT WITH US\n	</h3>\n<h3>\n		LET’S GET IN TOUCH\n	</h3>\n	<p>Don’t hestiate to ask us something. Email us directly <b>Joewillett44@gmail.com</b></p>\n','Contact','','inherit','closed','closed','','29-revision-v1','','','2018-04-26 10:34:16','2018-04-26 10:34:16','',29,'http://remoterangler.com/2018/04/26/29-revision-v1/',0,'revision','',0),(115,1,'2018-04-26 10:44:30','2018-04-26 10:44:30','','secure_checkout_now_large_large','','inherit','open','closed','','secure_checkout_now_large_large','','','2018-04-26 10:44:30','2018-04-26 10:44:30','',27,'http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png',0,'attachment','image/png',0),(116,1,'2018-04-26 10:44:52','2018-04-26 10:44:52','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1904\" width=\"1176\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\"  />\n','','','inherit','closed','closed','','27-revision-v1','','','2018-04-26 10:44:52','2018-04-26 10:44:52','',27,'http://remoterangler.com/2018/04/26/27-revision-v1/',0,'revision','',0),(112,1,'2018-04-26 10:27:21','2018-04-26 10:27:21','<h1>\n		Contact Us\n	</h1>\n	<iframe src=\"https://www.google.com/maps/embed/v1/place?key=AIzaSyD09zQ9PNDNNy9TadMuzRV_UsPUoWKntt8&q=1+Infinite+Loop%2C+Cupertino%2C+CA+95014\" style=\"border:0;width:100%;height:400px\"></iframe>\n<h3>\n		CONTACT DETAILS\n	</h3>\n	<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Culpa repellendus adipisci laborum placeat delectus labore cupiditate deserunt minus numquam consequatur esse, hic at earum illo.</p>\n	<p><strong>8181 Winchester Blvd.</strong></p>\n<p><strong>Cupertino, CA 95014,</strong></p>\n<p><strong>US</strong></p>\n<h3>\n		AVAILABLE AT 9AM TO 6PM\n	</h3>\n<h2>\n		800-275-0002\n	</h2>\n<h3>\n		CONNECT WITH US\n	</h3>\n<h3>\n		LET’S GET IN TOUCH\n	</h3>\n	<p>Don’t hestiate to ask us something. Email us directly <strong>hi@loremipsum.com</strong> or call us at <strong>1-800-275-0002</strong>. Sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat. Donec a scelerisque turpis. Eu pro expetenda contentiones. Dolor maiestatis mea ut, oportere corrumpit eu duo.</p>\n','Contact','','inherit','closed','closed','','29-revision-v1','','','2018-04-26 10:27:21','2018-04-26 10:27:21','',29,'http://remoterangler.com/2018/04/26/29-revision-v1/',0,'revision','',0),(113,1,'2018-04-26 10:27:44','2018-04-26 10:27:44','<h1>Contact Us</h1>\r\n<iframe style=\"border: 0; width: 100%; height: 400px;\" src=\"https://www.google.com/maps/embed/v1/place?key=AIzaSyD09zQ9PNDNNy9TadMuzRV_UsPUoWKntt8&amp;q=1+Infinite+Loop%2C+Cupertino%2C+CA+95014\" width=\"300\" height=\"150\"></iframe>\r\n<h3>CONTACT DETAILS</h3>\r\nLorem ipsum dolor sit amet, consectetur adipisicing elit. Culpa repellendus adipisci laborum placeat delectus labore cupiditate deserunt minus numquam consequatur esse, hic at earum illo.\r\n\r\n<strong>8181 Winchester Blvd.</strong>\r\n\r\n<strong>Cupertino, CA 95014,</strong>\r\n\r\n<strong>US</strong>\r\n<h3>AVAILABLE AT 9AM TO 6PM</h3>\r\n<h2>800-275-0002</h2>\r\n<h3>CONNECT WITH US</h3>\r\n<h3>LET’S GET IN TOUCH</h3>\r\nDon’t hestiate to ask us something. Email us directly <strong>hi@loremipsum.com</strong> or call us at <strong>1-800-275-0002</strong>. Sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat. Donec a scelerisque turpis. Eu pro expetenda contentiones. Dolor maiestatis mea ut, oportere corrumpit eu duo.','Contact','','inherit','closed','closed','','29-revision-v1','','','2018-04-26 10:27:44','2018-04-26 10:27:44','',29,'http://remoterangler.com/2018/04/26/29-revision-v1/',0,'revision','',0),(24,1,'2018-02-03 22:16:11','2018-02-03 22:16:11','','Espresso','','inherit','open','closed','','espresso','','','2018-02-03 22:16:11','2018-02-03 22:16:11','',0,'http://remoterangler.com/wp-content/uploads/2018/02/espresso-2.jpg',0,'attachment','image/jpeg',0),(25,1,'2018-02-03 22:16:11','2018-02-03 22:16:11','','Sandwich','','inherit','open','closed','','sandwich','','','2018-02-03 22:16:11','2018-02-03 22:16:11','',0,'http://remoterangler.com/wp-content/uploads/2018/02/sandwich-2.jpg',0,'attachment','image/jpeg',0),(26,1,'2018-02-03 22:16:11','2018-02-03 22:16:11','','Coffee','','inherit','open','closed','','coffee','','','2018-02-03 22:16:11','2018-02-03 22:16:11','',0,'http://remoterangler.com/wp-content/uploads/2018/02/coffee-2.jpg',0,'attachment','image/jpeg',0),(27,1,'2018-02-03 22:16:11','2018-02-03 22:16:11','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\" title=\"20180308_203557\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">Read More</a>		\n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1024\" width=\"632\" title=\"20180309_010105\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		\n				<a href=\"http://remoterangler.com/products/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"1024\" width=\"939\" title=\"20180405_220150\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/products/\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">Read More</a>		\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\" title=\"secure_checkout_now_large_large\"  />\n<h3>\n		CONNECT WITH US\n	</h3>\n<h1>\n		How It Works\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\" title=\"20180308_200016\"  />\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the Remote Rangler like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\" title=\"20180405_230244\"  />\n	<h2>Universal - Fits All Remotes</h2>\n<p>Elastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!</p>\n[product_page id=\"\"]','','','publish','closed','closed','','27-2','','','2018-12-27 01:21:46','2018-12-27 01:21:46','',0,'http://remoterangler.com/?page_id=27',0,'page','',0),(28,1,'2018-02-03 22:16:11','2018-02-03 22:16:11','<h1>\n		About Us\n	</h1>\n	<p>We do things a bit differently, and that\'s the way we like it!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\" alt=\"20180426_003915\" itemprop=\"image\" height=\"744\" width=\"1024\" title=\"20180426_003915\"  />\n<h3>\n		Our Team\n	</h3>\n	<p>That\'s us on the first day we received our initial shipment of Remote Ranglers and started assembling them. I\'m Joe the one on the left and my partner Troy, is on the right. He just got out of work at Honda. Just a couple of regular guys with high hopes and BIG DREAMS.</p>\n<h3>\n		Our Story\n	</h3>\n	<p>It all started with the fact that I have way too many remotes to keep track of. I kid you not, I have 8 remotes in just my bedroom! It seems that the more technology we get, the more remotes we have to operate them. Here\'s a list of my many remotes: TV, Soundbar, Firestick, light switch, air-conditioner, aroma diffuser and 2 fan remotes, one for me and one for my girl, because she doesn\'t like it too cold. I use these remotes everyday and keeping track of each one became such a major headache. They were either in the sheets, under the pillows, under the bed or under me, sucked in by my gravitational pull (as my girlfriend puts it.) I had to do something, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard. They are always nearby and ALWAYS together. I know I\'m not the only one with this problem, people have been losing remotes since they were invented. I realized I couldn\'t live without it. That\'s when I knew other people needed this product too. So, out of necessity I created the Remote Rangler! My buddy &amp; coworker Troy was one of my first customers. He loved it so much, that he offered to help me launch it, as his previous job experience related to our business well, and we became partners. Now, we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!</p>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						View Products\n					</a>\n','About Us','','publish','closed','closed','','about','','','2018-05-01 07:36:36','2018-05-01 07:36:36','',0,'http://remoterangler.com/?page_id=28',0,'page','',0),(29,1,'2018-02-03 22:16:11','2018-02-03 22:16:11','<h1>\n		Contact Us\n	</h1>\n<h3>\n		CONNECT WITH US\n	</h3>\n<h3>\n		LET’S GET IN TOUCH\n	</h3>\n	<p>Don’t hestiate to ask us something. Email us directly <b>Joewillett44@gmail.com</b></p>\n','Contact','','publish','closed','closed','','contact','','','2018-04-27 08:16:49','2018-04-27 08:16:49','',0,'http://remoterangler.com/?page_id=29',0,'page','',0),(30,1,'2018-02-03 22:16:11','2018-02-03 22:16:11','','Blog','','publish','closed','closed','','blog','','','2018-02-03 22:16:11','2018-02-03 22:16:11','',0,'http://remoterangler.com/?page_id=30',0,'page','',0),(50,1,'2018-04-24 22:25:16','2018-04-24 22:25:16','<h1>Let\'s Get Down To Business</h1>\r\n<p style=\"text-align: center;\">Building your WordPress website has never been easier with themes from FastLine Media!</p>\r\n<a role=\"button\" href=\"#\" target=\"_self\">\r\nGet Started Today\r\n</a>\r\n<h3>We\'re Here To Help You Succeed</h3>\r\n<a href=\"#\" target=\"_self\">\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\" alt=\"services\" width=\"600\" height=\"400\" />\r\n</a>\r\n<h3><a href=\"#\" target=\"_self\">Our Services</a></h3>\r\nDensior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.\r\n\r\n<a href=\"#\" target=\"_self\">Read More</a>\r\n<a href=\"#\" target=\"_self\">\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\" alt=\"about\" width=\"600\" height=\"400\" />\r\n</a>\r\n<h3><a href=\"#\" target=\"_self\">About Us</a></h3>\r\nDensior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.\r\n\r\n<a href=\"#\" target=\"_self\">Read More</a>\r\n<a href=\"#\" target=\"_self\">\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\" alt=\"contact\" width=\"600\" height=\"400\" />\r\n</a>\r\n<h3><a href=\"#\" target=\"_self\">Get In Touch</a></h3>\r\nDensior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.\r\n\r\n<a href=\"#\" target=\"_self\">Read More</a>\r\n<h3>Ready to find out more? Get started today!</h3>\r\nTerrae recepta fratrum passim fabricator videre nam deducite.\r\n\r\n<a role=\"button\" href=\"#\" target=\"_self\">\r\nContact Us\r\n</a>','Home','','inherit','closed','closed','','27-revision-v1','','','2018-04-24 22:25:16','2018-04-24 22:25:16','',27,'http://remoterangler.com/2018/04/24/27-revision-v1/',0,'revision','',0),(49,1,'2018-04-24 22:25:06','2018-04-24 22:25:06','<h1>\n		Let\'s Get Down To Business\n	</h1>\n	<p style=\"text-align: center;\">Building your WordPress website has never been easier with themes from FastLine Media!</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Get Started Today\n					</a>\n<h3>\n		We\'re Here To Help You Succeed\n	</h3>\n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\" alt=\"services\" itemprop=\"image\" height=\"400\" width=\"600\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">Our Services</a></h3>		\n			<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\" alt=\"about\" itemprop=\"image\" height=\"400\" width=\"600\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">About Us</a></h3>		\n			<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\" alt=\"contact\" itemprop=\"image\" height=\"400\" width=\"600\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">Get In Touch</a></h3>		\n			<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n		<h3>Ready to find out more? Get started today!</h3>\n		<p>Terrae recepta fratrum passim fabricator videre nam deducite.</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Contact Us\n					</a>\n','Home','','inherit','closed','closed','','27-revision-v1','','','2018-04-24 22:25:06','2018-04-24 22:25:06','',27,'http://remoterangler.com/2018/04/24/27-revision-v1/',0,'revision','',0),(52,1,'2018-04-24 22:26:02','2018-04-24 22:26:02','<h1>Let\'s Get Down To Business</h1>\r\n<p style=\"text-align: center;\">Building your WordPress website has never been easier with themes from FastLine Media!</p>\r\n<a role=\"button\" href=\"#\" target=\"_self\">\r\nGet Started Today\r\n</a>\r\n<h3>We\'re Here To Help You Succeed</h3>\r\n<a href=\"#\" target=\"_self\">\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\" alt=\"services\" width=\"600\" height=\"400\" />\r\n</a>\r\n<h3><a href=\"#\" target=\"_self\">Our Services</a></h3>\r\nDensior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.\r\n\r\n<a href=\"#\" target=\"_self\">Read More</a>\r\n<a href=\"#\" target=\"_self\">\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\" alt=\"about\" width=\"600\" height=\"400\" />\r\n</a>\r\n<h3><a href=\"#\" target=\"_self\">About Us</a></h3>\r\nDensior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.\r\n\r\n<a href=\"#\" target=\"_self\">Read More</a>\r\n<a href=\"#\" target=\"_self\">\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\" alt=\"contact\" width=\"600\" height=\"400\" />\r\n</a>\r\n<h3><a href=\"#\" target=\"_self\">Get In Touch</a></h3>\r\nDensior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.\r\n\r\n<a href=\"#\" target=\"_self\">Read More</a>\r\n<h3>Ready to find out more? Get started today!</h3>\r\nTerrae recepta fratrum passim fabricator videre nam deducite.\r\n\r\n<a role=\"button\" href=\"#\" target=\"_self\">\r\nContact Us\r\n</a>','','','inherit','closed','closed','','27-revision-v1','','','2018-04-24 22:26:02','2018-04-24 22:26:02','',27,'http://remoterangler.com/2018/04/24/27-revision-v1/',0,'revision','',0),(51,1,'2018-04-24 22:25:29','2018-04-24 22:25:29','<h1>\n		Let\'s Get Down To Business\n	</h1>\n	<p style=\"text-align: center;\">Building your WordPress website has never been easier with themes from FastLine Media!</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Get Started Today\n					</a>\n<h3>\n		We\'re Here To Help You Succeed\n	</h3>\n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/services.jpg\" alt=\"services\" itemprop=\"image\" height=\"400\" width=\"600\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">Our Services</a></h3>		\n			<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/about.jpg\" alt=\"about\" itemprop=\"image\" height=\"400\" width=\"600\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">About Us</a></h3>		\n			<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\" alt=\"contact\" itemprop=\"image\" height=\"400\" width=\"600\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">Get In Touch</a></h3>		\n			<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n		<h3>Ready to find out more? Get started today!</h3>\n		<p>Terrae recepta fratrum passim fabricator videre nam deducite.</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Contact Us\n					</a>\n','Home','','inherit','closed','closed','','27-revision-v1','','','2018-04-24 22:25:29','2018-04-24 22:25:29','',27,'http://remoterangler.com/2018/04/24/27-revision-v1/',0,'revision','',0),(53,1,'2018-04-24 22:29:07','2018-04-24 22:29:07','','20180308_200016','','inherit','open','closed','','20180308_200016','','','2018-04-24 22:32:00','2018-04-24 22:32:00','',27,'http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016.jpg',0,'attachment','image/jpeg',0),(54,1,'2018-04-24 22:33:25','2018-04-24 22:33:25','','20180308_201116','','inherit','open','closed','','20180308_201116','','','2018-04-24 22:33:25','2018-04-24 22:33:25','',27,'http://remoterangler.com/wp-content/uploads/2018/04/20180308_201116.jpg',0,'attachment','image/jpeg',0),(55,1,'2018-04-26 06:40:23','2018-04-26 06:40:23','','20180308_203557','','inherit','open','closed','','20180308_203557','','','2018-04-26 06:40:23','2018-04-26 06:40:23','',27,'http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557.jpg',0,'attachment','image/jpeg',0),(56,1,'2018-04-26 06:44:19','2018-04-26 06:44:19','','secure-paypal-payments','','inherit','open','closed','','secure-paypal-payments','','','2018-04-26 06:44:19','2018-04-26 06:44:19','',27,'http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png',0,'attachment','image/png',0),(57,1,'2018-04-26 06:54:42','2018-04-26 06:54:42','','20180309_010105','','inherit','open','closed','','20180309_010105','','','2018-04-26 06:54:42','2018-04-26 06:54:42','',27,'http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg',0,'attachment','image/jpeg',0),(58,1,'2018-04-26 07:03:29','2018-04-26 07:03:29','<h1>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h1>\n			<a href=\"\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1904\" width=\"1176\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/contact.jpg\" alt=\"contact\" itemprop=\"image\" height=\"400\" width=\"600\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">Get In Touch</a></h3>		\n			<p>Densior nam solidumque aer librata pondus dispositam moles. Mundum lumina postquam grandia recens subdita nubibus faecis.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\" alt=\"secure-paypal-payments\" itemprop=\"image\" height=\"150\" width=\"300\"  />\n','','','inherit','closed','closed','','27-revision-v1','','','2018-04-26 07:03:29','2018-04-26 07:03:29','',27,'http://remoterangler.com/2018/04/26/27-revision-v1/',0,'revision','',0),(59,1,'2018-04-26 07:06:02','2018-04-26 07:06:02','','20180309_010536','','inherit','open','closed','','20180309_010536','','','2018-04-26 07:06:02','2018-04-26 07:06:02','',0,'http://remoterangler.com/wp-content/uploads/2018/04/20180309_010536.jpg',0,'attachment','image/jpeg',0),(61,1,'2018-04-26 07:09:33','2018-04-26 07:09:33','','20180405_230244','','inherit','open','closed','','20180405_230244','','','2018-04-27 02:54:56','2018-04-27 02:54:56','',0,'http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244.jpg',0,'attachment','image/jpeg',0),(33,1,'2018-02-03 22:16:11','2018-02-03 22:16:11','Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.','Home','','inherit','closed','closed','','27-revision-v1','','','2018-02-03 22:16:11','2018-02-03 22:16:11','',27,'http://remoterangler.com/2018/02/03/27-revision-v1/',0,'revision','',0),(34,1,'2018-02-03 22:16:11','2018-02-03 22:16:11','You might be an artist who would like to introduce yourself and your work here or maybe you&rsquo;re a business with a mission to describe.','About','','inherit','closed','closed','','28-revision-v1','','','2018-02-03 22:16:11','2018-02-03 22:16:11','',28,'http://remoterangler.com/2018/02/03/28-revision-v1/',0,'revision','',0),(35,1,'2018-02-03 22:16:11','2018-02-03 22:16:11','This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.','Contact','','inherit','closed','closed','','29-revision-v1','','','2018-02-03 22:16:11','2018-02-03 22:16:11','',29,'http://remoterangler.com/2018/02/03/29-revision-v1/',0,'revision','',0),(36,1,'2018-02-03 22:16:11','2018-02-03 22:16:11','','Blog','','inherit','closed','closed','','30-revision-v1','','','2018-02-03 22:16:11','2018-02-03 22:16:11','',30,'http://remoterangler.com/2018/02/03/30-revision-v1/',0,'revision','',0),(62,1,'2018-04-26 07:11:17','2018-04-26 07:11:17','','20180308_202833','','inherit','open','closed','','20180308_202833','','','2018-04-27 07:48:17','2018-04-27 07:48:17','',151,'http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg',0,'attachment','image/jpeg',0),(64,1,'2018-04-26 07:21:07','2018-04-26 07:21:07','','20180405_220150','','inherit','open','closed','','20180405_220150','','','2018-04-27 09:01:03','2018-04-27 09:01:03','',27,'http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg',0,'attachment','image/jpeg',0),(65,1,'2018-04-26 07:21:42','2018-04-26 07:21:42','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1904\" width=\"1176\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\" alt=\"secure-paypal-payments\" itemprop=\"image\" height=\"150\" width=\"300\"  />\n','','','inherit','closed','closed','','27-revision-v1','','','2018-04-26 07:21:42','2018-04-26 07:21:42','',27,'http://remoterangler.com/2018/04/26/27-revision-v1/',0,'revision','',0),(70,1,'2018-04-26 07:53:32','2018-04-26 07:53:32','<h1>\n		About Us\n	</h1>\n	<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\" alt=\"20180426_003915\" itemprop=\"image\" height=\"1041\" width=\"1432\"  />\n<h3>\n		Our Team\n	</h3>\n	<p>That\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of working at Honda. Just a couple of regular guys with high hopes and Big DREAMS.</p>\n<h3>\n		Our Story\n	</h3>\n	<p>e</p>\n','','','inherit','closed','closed','','28-revision-v1','','','2018-04-26 07:53:32','2018-04-26 07:53:32','',28,'http://remoterangler.com/2018/04/26/28-revision-v1/',0,'revision','',0),(67,1,'2018-04-26 07:35:20','2018-04-26 07:35:20','<h1>About Us</h1>\r\n<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\" alt=\"A group of successful and satisfied businesspeople looking upwards smiling\" width=\"849\" height=\"565\" />\r\n<h3>Our Team</h3>\r\nPartim orba seductaque. Porrexerat mutatas ita campos caelum viseret locoque rudis. Homini tollere aer caeli acervo. Occiduo onus origo zonae iapeto inminet nulli elementaque. Deducite usu montibus igni tegit dixere campoque quem nulli.\r\n<h3>Our Story</h3>\r\nMutastis semine! Forma tonitrua praecipites. Liberioris nix rapidisque matutinis unus undae os. Turba ambitae nitidis ultima. Ille declivia orbe primaque phoebe opifex tegi pressa crescendo. Vultus onus ponderibus aere ambitae.','About','','inherit','closed','closed','','28-revision-v1','','','2018-04-26 07:35:20','2018-04-26 07:35:20','',28,'http://remoterangler.com/2018/04/26/28-revision-v1/',0,'revision','',0),(66,1,'2018-04-26 07:34:47','2018-04-26 07:34:47','<h1>\n		About Us\n	</h1>\n	<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\" alt=\"A group of successful and satisfied businesspeople looking upwards smiling\" itemprop=\"image\" height=\"565\" width=\"849\"  />\n<h3>\n		Our Team\n	</h3>\n	<p>Partim orba seductaque. Porrexerat mutatas ita campos caelum viseret locoque rudis. Homini tollere aer caeli acervo. Occiduo onus origo zonae iapeto inminet nulli elementaque. Deducite usu montibus igni tegit dixere campoque quem nulli.</p>\n<h3>\n		Our Story\n	</h3>\n	<p>Mutastis semine! Forma tonitrua praecipites. Liberioris nix rapidisque matutinis unus undae os. Turba ambitae nitidis ultima. Ille declivia orbe primaque phoebe opifex tegi pressa crescendo. Vultus onus ponderibus aere ambitae.</p>\n','About','','inherit','closed','closed','','28-revision-v1','','','2018-04-26 07:34:47','2018-04-26 07:34:47','',28,'http://remoterangler.com/2018/04/26/28-revision-v1/',0,'revision','',0),(68,1,'2018-04-26 07:36:14','2018-04-26 07:36:14','<h1>About Us</h1>\r\n<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2013/12/iStock_000020420411Small.jpg\" alt=\"A group of successful and satisfied businesspeople looking upwards smiling\" width=\"849\" height=\"565\" />\r\n<h3>Our Team</h3>\r\nPartim orba seductaque. Porrexerat mutatas ita campos caelum viseret locoque rudis. Homini tollere aer caeli acervo. Occiduo onus origo zonae iapeto inminet nulli elementaque. Deducite usu montibus igni tegit dixere campoque quem nulli.\r\n<h3>Our Story</h3>\r\nMutastis semine! Forma tonitrua praecipites. Liberioris nix rapidisque matutinis unus undae os. Turba ambitae nitidis ultima. Ille declivia orbe primaque phoebe opifex tegi pressa crescendo. Vultus onus ponderibus aere ambitae.','','','inherit','closed','closed','','28-revision-v1','','','2018-04-26 07:36:14','2018-04-26 07:36:14','',28,'http://remoterangler.com/2018/04/26/28-revision-v1/',0,'revision','',0),(69,1,'2018-04-26 07:41:46','2018-04-26 07:41:46','','20180426_003915','','inherit','open','closed','','20180426_003915','','','2018-04-26 07:41:46','2018-04-26 07:41:46','',28,'http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg',0,'attachment','image/jpeg',0),(71,1,'2018-04-26 08:30:53','2018-04-26 08:30:53','<h1>\n		About Us\n	</h1>\n	<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\" alt=\"20180426_003915\" itemprop=\"image\" height=\"1041\" width=\"1432\"  />\n<h3>\n		Our Team\n	</h3>\n	<p>That\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of working at Honda. Just a couple of regular guys with high hopes and Big DREAMS.</p>\n<h3>\n		Our Story\n	</h3>\n	<p>It all started with the fact that I have way too many Remotes to keep track of. I kid you not, I have 8 remotes in my bedroom. It seems that the more technology that we get the more remotes we have to operate them. Let me list what my remotes go to: TV, Soundbar, Firestick, light switch, Airconditioner, an aroma diffuser and 2 fan remotes, one for me and one for my GF because she doesn\'t like it too cold. I use these remotes everyday and looking for each one became such a headache. They were either in the sheets, under the pillows, under the bed or under me sucked in by my gravitational pull as my gf puts it. I had to do something about all these remotes, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard, they\'re always nearby and plus always together. I know I can\'t be the only one with this problem, people have been losing their remotes since they were invented. I couldn\'t live without it, I wasn\'t constantly looking for the remotes, getting up and shaking the sheets to find them, they were always there and always together. That\'s when I knew other people need this product. So I created the Remote Rangler and my coworker friend Troy was one of my first customers. He loved it so much that he offered to help me launch it, and we became partners. Now we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!</p>\n','','','inherit','closed','closed','','28-revision-v1','','','2018-04-26 08:30:53','2018-04-26 08:30:53','',28,'http://remoterangler.com/2018/04/26/28-revision-v1/',0,'revision','',0),(72,1,'2018-04-26 08:34:43','2018-04-26 08:34:43','<h1>\n		About Us\n	</h1>\n	<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\" alt=\"20180426_003915\" itemprop=\"image\" height=\"1041\" width=\"1432\"  />\n<h3>\n		Our Team\n	</h3>\n	<p>That\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of work from Honda. Just a couple of regular guys with high hopes and Big DREAMS.</p>\n<h3>\n		Our Story\n	</h3>\n	<p>It all started with the fact that I have way too many Remotes to keep track of. I kid you not, I have 8 remotes in my bedroom. It seems that the more technology that we get the more remotes we have to operate them. Let me list what my remotes go to: TV, Soundbar, Firestick, light switch, Airconditioner, an aroma diffuser and 2 fan remotes, one for me and one for my GF because she doesn\'t like it too cold. I use these remotes everyday and looking for each one became such a headache. They were either in the sheets, under the pillows, under the bed or under me sucked in by my gravitational pull as my gf puts it. I had to do something about all these remotes, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard, they\'re always nearby and plus always together. I know I can\'t be the only one with this problem, people have been losing their remotes since they were invented. I couldn\'t live without it, I wasn\'t constantly looking for the remotes, getting up and shaking the sheets to find them, they were always there and always together. That\'s when I knew other people need this product. So I created the Remote Rangler and my coworker friend Troy was one of my first customers. He loved it so much that he offered to help me launch it, and we became partners. Now we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!</p>\n','','','inherit','closed','closed','','28-revision-v1','','','2018-04-26 08:34:43','2018-04-26 08:34:43','',28,'http://remoterangler.com/2018/04/26/28-revision-v1/',0,'revision','',0),(76,1,'2018-04-26 08:46:48','2018-04-26 08:46:48','<h2>Tired Of Losing The Remotes? Now There\'s Hope!</h2>\r\n<a role=\"button\" target=\"_self\">\r\nBuy Now!\r\n</a>\r\n<a href=\"#\" target=\"_self\">\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" width=\"547\" height=\"1024\" />\r\n</a>\r\n<h3><a href=\"#\" target=\"_self\">How It Works</a></h3>\r\nStop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\r\n\r\n<a href=\"#\" target=\"_self\">Read More</a>\r\n<a href=\"http://remoterangler.com/about\" target=\"_self\">\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\" alt=\"20180309_010105\" width=\"1176\" height=\"1904\" />\r\n</a>\r\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>\r\nMeet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\r\n\r\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>\r\n<a href=\"#\" target=\"_self\">\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" width=\"2452\" height=\"2674\" />\r\n</a>\r\n<h3><a href=\"#\" target=\"_self\">Products</a></h3>\r\nRemote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\r\n\r\n<a href=\"#\" target=\"_self\">Read More</a>\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\" alt=\"secure-paypal-payments\" width=\"300\" height=\"150\" />','','','inherit','closed','closed','','27-revision-v1','','','2018-04-26 08:46:48','2018-04-26 08:46:48','',27,'http://remoterangler.com/2018/04/26/27-revision-v1/',0,'revision','',0),(73,1,'2018-04-26 08:36:21','2018-04-26 08:36:21','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1904\" width=\"1176\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure-paypal-payments.png\" alt=\"secure-paypal-payments\" itemprop=\"image\" height=\"150\" width=\"300\"  />\n','','','inherit','closed','closed','','27-revision-v1','','','2018-04-26 08:36:21','2018-04-26 08:36:21','',27,'http://remoterangler.com/2018/04/26/27-revision-v1/',0,'revision','',0),(74,1,'2018-04-26 08:42:12','2018-04-26 08:42:12','<h1>About Us</h1>\r\n<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\" alt=\"20180426_003915\" width=\"1432\" height=\"1041\" />\r\n<h3>Our Team</h3>\r\nThat\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of work from Honda. Just a couple of regular guys with high hopes and Big DREAMS.\r\n<h3>Our Story</h3>\r\nIt all started with the fact that I have way too many Remotes to keep track of. I kid you not, I have 8 remotes in my bedroom. It seems that the more technology that we get the more remotes we have to operate them. Let me list what my remotes go to: TV, Soundbar, Firestick, light switch, Airconditioner, an aroma diffuser and 2 fan remotes, one for me and one for my GF because she doesn\'t like it too cold. I use these remotes everyday and looking for each one became such a headache. They were either in the sheets, under the pillows, under the bed or under me sucked in by my gravitational pull as my gf puts it. I had to do something about all these remotes, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard, they\'re always nearby and plus always together. I know I can\'t be the only one with this problem, people have been losing their remotes since they were invented. I couldn\'t live without it, I wasn\'t constantly looking for the remotes, getting up and shaking the sheets to find them, they were always there and always together. That\'s when I knew other people need this product. So I created the Remote Rangler and my coworker friend Troy was one of my first customers. He loved it so much that he offered to help me launch it, and we became partners. Now we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!','About Us','','inherit','closed','closed','','28-autosave-v1','','','2018-04-26 08:42:12','2018-04-26 08:42:12','',28,'http://remoterangler.com/2018/04/26/28-autosave-v1/',0,'revision','',0),(75,1,'2018-04-26 08:43:04','2018-04-26 08:43:04','<h1>About Us</h1>\r\n<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915.jpg\" alt=\"20180426_003915\" width=\"1432\" height=\"1041\" />\r\n<h3>Our Team</h3>\r\nThat\'s us on the first day we received our shipment of Remote Ranglers and started assembling them. I am the one on the left and my partner Troy is on the right, he had just gotten out of work from Honda. Just a couple of regular guys with high hopes and Big DREAMS.\r\n<h3>Our Story</h3>\r\nIt all started with the fact that I have way too many Remotes to keep track of. I kid you not, I have 8 remotes in my bedroom. It seems that the more technology that we get the more remotes we have to operate them. Let me list what my remotes go to: TV, Soundbar, Firestick, light switch, Airconditioner, an aroma diffuser and 2 fan remotes, one for me and one for my GF because she doesn\'t like it too cold. I use these remotes everyday and looking for each one became such a headache. They were either in the sheets, under the pillows, under the bed or under me sucked in by my gravitational pull as my gf puts it. I had to do something about all these remotes, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard, they\'re always nearby and plus always together. I know I can\'t be the only one with this problem, people have been losing their remotes since they were invented. I couldn\'t live without it, I wasn\'t constantly looking for the remotes, getting up and shaking the sheets to find them, they were always there and always together. That\'s when I knew other people need this product. So I created the Remote Rangler and my coworker friend Troy was one of my first customers. He loved it so much that he offered to help me launch it, and we became partners. Now we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!','About Us','','inherit','closed','closed','','28-revision-v1','','','2018-04-26 08:43:04','2018-04-26 08:43:04','',28,'http://remoterangler.com/2018/04/26/28-revision-v1/',0,'revision','',0),(77,1,'2018-04-26 08:48:05','2018-04-26 08:48:05','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\r\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</blockquote>\r\n...or something like this:\r\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\r\nAs a new WordPress user, you should go to <a href=\"http://remoterangler.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-26 08:48:05','2018-04-26 08:48:05','',2,'http://remoterangler.com/2018/04/26/2-revision-v1/',0,'revision','',0),(140,1,'2018-04-27 03:08:33','2018-04-27 03:08:33','<h2>\n		Everything you need, in one place.\n	</h2>\n	<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p>\n<p><a href=\"#\">Read More</a></p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203916.jpg\" alt=\"20180308_203916\" itemprop=\"image\" height=\"2362\" width=\"2245\"  />\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/desk.jpg\" alt=\"desk\" itemprop=\"image\" height=\"667\" width=\"1000\"  />\n<h2>\n		The best place to work, period.\n	</h2>\n	<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p>\n<p><a href=\"#\">Read More</a></p>\n<h2>\n		We would love to hear from you.\n	</h2>\n	<p style=\"text-align: center;\">408.999.9999 • info@yourbiz.com</p>\n	<iframe src=\"https://www.google.com/maps/embed/v1/place?key=AIzaSyD09zQ9PNDNNy9TadMuzRV_UsPUoWKntt8&q=1865+Winchester+Blvd.+Campbell+CA+95008\" style=\"border:0;width:100%;height:340px\"></iframe>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-27 03:08:33','2018-04-27 03:08:33','',2,'http://remoterangler.com/2018/04/27/2-revision-v1/',0,'revision','',0),(136,1,'2018-04-27 03:02:06','2018-04-27 03:02:06','<h1>\n		Welcome To Scroller!\n	</h1>\n	<p style=\"text-align: center;\">A parallax theme for the FastLine Page Builder.</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Get Started\n					</a>\n<h2>\n		Everything you need, in one place.\n	</h2>\n	<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p>\n<p><a href=\"#\">Read More</a></p>\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/iphone-pen.jpg\" alt=\"iphone-pen\" itemprop=\"image\" height=\"667\" width=\"1000\"  />\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/desk.jpg\" alt=\"desk\" itemprop=\"image\" height=\"667\" width=\"1000\"  />\n<h2>\n		The best place to work, period.\n	</h2>\n	<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p>\n<p><a href=\"#\">Read More</a></p>\n<h2>\n		We would love to hear from you.\n	</h2>\n	<p style=\"text-align: center;\">408.999.9999 • info@yourbiz.com</p>\n	<iframe src=\"https://www.google.com/maps/embed/v1/place?key=AIzaSyD09zQ9PNDNNy9TadMuzRV_UsPUoWKntt8&q=1865+Winchester+Blvd.+Campbell+CA+95008\" style=\"border:0;width:100%;height:340px\"></iframe>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-27 03:02:06','2018-04-27 03:02:06','',2,'http://remoterangler.com/2018/04/27/2-revision-v1/',0,'revision','',0),(137,1,'2018-04-27 03:03:36','2018-04-27 03:03:36','','20180308_203916','','inherit','open','closed','','20180308_203916','','','2018-04-27 03:03:36','2018-04-27 03:03:36','',2,'http://remoterangler.com/wp-content/uploads/2018/04/20180308_203916.jpg',0,'attachment','image/jpeg',0),(138,1,'2018-04-27 03:04:41','2018-04-27 03:04:41','','20180417_124010','','inherit','open','closed','','20180417_124010','','','2018-04-27 03:04:41','2018-04-27 03:04:41','',2,'http://remoterangler.com/wp-content/uploads/2018/04/20180417_124010.jpg',0,'attachment','image/jpeg',0),(119,1,'2018-04-26 10:58:51','2018-04-26 10:58:51','<h1>An Elegant WordPress Theme Solution</h1>\r\n<p style=\"text-align: center;\">Consectetur adipiscing elit mauris rutrum neque placerat leo pharetra laoreet.</p>\r\n<a role=\"button\" href=\"#\" target=\"_self\">\r\nLet\'s get started!\r\n</a>\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/microsoft-logo.png\" alt=\"microsoft-logo\" width=\"225\" height=\"48\" />\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/amazon-logo.png\" alt=\"amazon-logo\" width=\"191\" height=\"43\" />\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/oracle-logo.png\" alt=\"oracle-logo\" width=\"187\" height=\"24\" />\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/facebook-logo.png\" alt=\"facebook-logo\" width=\"177\" height=\"35\" />\r\n<h1>Design / Branding Examples</h1>\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/lou-macbook1.jpg\" alt=\"lou-macbook\" width=\"749\" height=\"562\" />\r\n<h3>Curabitur quis tincidunt diam.</h3>\r\nDonec et quam at elit tempus feugiat. Proin lorem ante, pulvinar sed tempor quis, semper nec erat. Etiam nec augue in elit vulputate sodales. Etiam ornare mollis sapien non lobortis.\r\n\r\n<a role=\"button\" href=\"#\" target=\"_self\">\r\nGet Started\r\n</a>\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/art-macbook.jpg\" alt=\"art-macbook\" width=\"749\" height=\"562\" />\r\n<h3>Curabitur quis tincidunt diam.</h3>\r\nDonec et quam at elit tempus feugiat. Proin lorem ante, pulvinar sed tempor quis, semper nec erat. Etiam nec augue in elit vulputate sodales. Etiam ornare mollis sapien non lobortis.\r\n\r\n<a role=\"button\" href=\"#\" target=\"_self\">\r\nGet Started\r\n</a>\r\n<h1>Meet the Experts</h1>\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-1.jpg\" alt=\"expert-1\" width=\"204\" height=\"255\" />\r\n<h3>Levi Watson</h3>\r\nFossae permisit terris animalibus. Convexi vis terrarum cepit. Nulli caligine nec effigiem capacius membra.\r\n\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-2.jpg\" alt=\"expert-2\" width=\"204\" height=\"255\" />\r\n<h3>Nicolas Janssens</h3>\r\nFossae permisit terris animalibus. Convexi vis terrarum cepit. Nulli caligine nec effigiem capacius membra.\r\n\r\n<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-3.jpg\" alt=\"expert-3\" width=\"204\" height=\"255\" />\r\n<h3>Octav Videanu</h3>\r\nFossae permisit terris animalibus. Convexi vis terrarum cepit. Nulli caligine nec effigiem capacius membra.\r\n<h3>Find us Socially</h3>\r\n<iframe style=\"border: none; overflow: hidden; width: 250px; height: 350px;\" src=\"//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FFastLine-Media%2F106732702687887&amp;width=400&amp;height=5508&amp;colorscheme=dark&amp;show_faces=true&amp;header=false&amp;stream=false&amp;show_border=false&amp;appId=525994720806655\" width=\"300\" height=\"150\" frameborder=\"0\" scrolling=\"no\"></iframe>\r\n<h3>Contact Us</h3>\r\n<h3>Recent Posts</h3>\r\n<h3>Latest Discussions</h3>','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-26 10:58:51','2018-04-26 10:58:51','',2,'http://remoterangler.com/2018/04/26/2-revision-v1/',0,'revision','',0),(78,1,'2018-04-26 08:52:19','2018-04-26 08:52:19','<h1>\n		An Elegant WordPress Theme Solution\n	</h1>\n	<p style=\"text-align: center;\">Consectetur adipiscing elit mauris rutrum neque placerat leo pharetra laoreet.</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Let\'s get started!\n					</a>\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/microsoft-logo.png\" alt=\"microsoft-logo\" itemprop=\"image\" height=\"48\" width=\"225\"  />\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/amazon-logo.png\" alt=\"amazon-logo\" itemprop=\"image\" height=\"43\" width=\"191\"  />\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/oracle-logo.png\" alt=\"oracle-logo\" itemprop=\"image\" height=\"24\" width=\"187\"  />\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/07/facebook-logo.png\" alt=\"facebook-logo\" itemprop=\"image\" height=\"35\" width=\"177\"  />\n<h1>\n		Design / Branding Examples\n	</h1>\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/lou-macbook1.jpg\" alt=\"lou-macbook\" itemprop=\"image\" height=\"562\" width=\"749\"  />\n	<h3>Curabitur quis tincidunt diam.</h3>\n<p>Donec et quam at elit tempus feugiat. Proin lorem ante, pulvinar sed tempor quis, semper nec erat. Etiam nec augue in elit vulputate sodales. Etiam ornare mollis sapien non lobortis.</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Get Started\n					</a>\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/art-macbook.jpg\" alt=\"art-macbook\" itemprop=\"image\" height=\"562\" width=\"749\"  />\n	<h3>Curabitur quis tincidunt diam.</h3>\n<p>Donec et quam at elit tempus feugiat. Proin lorem ante, pulvinar sed tempor quis, semper nec erat. Etiam nec augue in elit vulputate sodales. Etiam ornare mollis sapien non lobortis.</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Get Started\n					</a>\n<h1>\n		Meet the Experts\n	</h1>\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-1.jpg\" alt=\"expert-1\" itemprop=\"image\" height=\"255\" width=\"204\"  />\n<h3>Levi Watson</h3>		\n			<p>Fossae permisit terris animalibus. Convexi vis terrarum cepit. Nulli caligine nec effigiem capacius membra.</p>\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-2.jpg\" alt=\"expert-2\" itemprop=\"image\" height=\"255\" width=\"204\"  />\n<h3>Nicolas Janssens</h3>		\n			<p>Fossae permisit terris animalibus. Convexi vis terrarum cepit. Nulli caligine nec effigiem capacius membra.</p>\n				<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/06/expert-3.jpg\" alt=\"expert-3\" itemprop=\"image\" height=\"255\" width=\"204\"  />\n<h3>Octav Videanu</h3>		\n			<p>Fossae permisit terris animalibus. Convexi vis terrarum cepit. Nulli caligine nec effigiem capacius membra.</p>\n<h3>\n		Find us Socially\n	</h3>\n	<iframe src=\"//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FFastLine-Media%2F106732702687887&width=400&height=5508&colorscheme=dark&show_faces=true&header=false&stream=false&show_border=false&appId=525994720806655\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:250px; height:350px;\" allowTransparency=\"true\"></iframe>\n<h3>\n		Contact Us\n	</h3>\n<h3>\n		Recent Posts\n	</h3>\n<h3>\n		Latest Discussions\n	</h3>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-26 08:52:19','2018-04-26 08:52:19','',2,'http://remoterangler.com/2018/04/26/2-revision-v1/',0,'revision','',0),(117,1,'2018-04-26 10:49:01','2018-04-26 10:49:01','[woocommerce_cart]','Cart','','inherit','closed','closed','','83-revision-v1','','','2018-04-26 10:49:01','2018-04-26 10:49:01','',83,'http://remoterangler.com/2018/04/26/83-revision-v1/',0,'revision','',0),(118,1,'2018-04-26 10:57:34','2018-04-26 10:57:34','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"http://remoterangler.com/shop/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\"  />\n				</a>\n<h3><a href=\"#\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1904\" width=\"1176\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/shop/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/shop/\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"http://remoterangler.com/shop/\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\"  />\n','','','inherit','closed','closed','','27-revision-v1','','','2018-04-26 10:57:34','2018-04-26 10:57:34','',27,'http://remoterangler.com/2018/04/26/27-revision-v1/',0,'revision','',0),(120,1,'2018-04-26 11:01:14','2018-04-26 11:01:14','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1904\" width=\"1176\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/products/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/products/\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\"  />\n','','','inherit','closed','closed','','27-revision-v1','','','2018-04-26 11:01:14','2018-04-26 11:01:14','',27,'http://remoterangler.com/2018/04/26/27-revision-v1/',0,'revision','',0),(123,1,'2018-04-26 18:39:09','2018-04-26 18:39:09','[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf\" title=\"Remote Rangler one page Summary\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf\">Click Here to download Remote Rangler one page Summary</a>\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-pitch-deck-collab.pdf\">Click Here To download The Remote Rangler Pitch Deck</a>','Pitch Deck','','publish','closed','closed','','pitchdeck','','','2018-06-19 19:39:24','2018-06-19 19:39:24','',0,'http://remoterangler.com/?page_id=123',0,'page','',0),(124,1,'2018-04-26 18:39:09','2018-04-26 18:39:09','','Pitch Deck','','inherit','closed','closed','','123-revision-v1','','','2018-04-26 18:39:09','2018-04-26 18:39:09','',123,'http://remoterangler.com/2018/04/26/123-revision-v1/',0,'revision','',0),(125,1,'2018-04-26 18:58:17','2018-04-26 18:58:17','','Remote Rangler pitch deck collab','','inherit','open','closed','','remote-rangler-pitch-deck-collab','','','2018-04-26 18:58:17','2018-04-26 18:58:17','',123,'http://remoterangler.com/wp-content/uploads/2018/04/Remote-Rangler-pitch-deck-collab.pdf',0,'attachment','application/pdf',0),(126,1,'2018-05-07 07:12:41','2018-05-07 07:12:41','<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf\">Remote Rangler one page Summary</a>\n\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-pitch-deck-collab.pdf\">Click Here To See The Remote Rangler Pitch Deck</a>','Pitch Deck','','inherit','closed','closed','','123-autosave-v1','','','2018-05-07 07:12:41','2018-05-07 07:12:41','',123,'http://remoterangler.com/2018/04/26/123-autosave-v1/',0,'revision','',0),(193,1,'2018-05-01 09:16:13','2018-05-01 09:16:13','','Remote Rangler pitch deck collab','','inherit','open','closed','','remote-rangler-pitch-deck-collab-2','','','2018-05-01 09:16:13','2018-05-01 09:16:13','',123,'http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-pitch-deck-collab.pdf',0,'attachment','application/pdf',0),(127,1,'2018-04-26 19:00:27','2018-04-26 19:00:27','<a href=\"http://remoterangler.com/wp-content/uploads/2018/04/Remote-Rangler-pitch-deck-collab.pdf\">Click Here To Download The Remote Rangler pitch Deck</a>','Pitch Deck','','inherit','closed','closed','','123-revision-v1','','','2018-04-26 19:00:27','2018-04-26 19:00:27','',123,'http://remoterangler.com/2018/04/26/123-revision-v1/',0,'revision','',0),(128,1,'2018-04-26 19:01:38','2018-04-26 19:01:38','<a href=\"http://remoterangler.com/wp-content/uploads/2018/04/Remote-Rangler-pitch-deck-collab.pdf\">Click Here To See The Remote Rangler Pitch Deck</a>','Pitch Deck','','inherit','closed','closed','','123-revision-v1','','','2018-04-26 19:01:38','2018-04-26 19:01:38','',123,'http://remoterangler.com/2018/04/26/123-revision-v1/',0,'revision','',0),(283,1,'2019-02-05 19:02:13','2019-02-05 19:02:13','','Order &ndash; February 5, 2019 @ 07:02 PM','','wc-processing','open','closed','order_5c59ddb5ddacb','order-feb-05-2019-0702-pm','','','2019-02-05 19:06:23','2019-02-05 19:06:23','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=283',0,'shop_order','',2),(285,1,'2019-03-18 01:23:51','2019-03-18 01:23:51','','Order &ndash; March 18, 2019 @ 01:23 AM','','wc-processing','open','closed','order_5c8ef32700a90','order-mar-18-2019-0123-am','','','2019-03-18 01:26:41','2019-03-18 01:26:41','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=285',0,'shop_order','',2),(286,1,'2019-03-18 22:25:06','2019-03-18 22:25:06','','Order &ndash; March 18, 2019 @ 10:25 PM','','wc-processing','open','closed','order_5c901ac202def','order-mar-18-2019-1025-pm','','','2019-03-18 22:26:09','2019-03-18 22:26:09','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=286',0,'shop_order','',2),(289,1,'2019-04-01 01:54:02','2019-04-01 01:54:02','','Order &ndash; April 1, 2019 @ 01:54 AM','','wc-processing','open','closed','order_5ca16f3a090ca','order-apr-01-2019-0154-am','','','2019-04-01 01:54:04','2019-04-01 01:54:04','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=289',0,'shop_order','',1),(288,1,'2019-03-26 21:27:00','2019-03-26 21:27:00','','Order &ndash; March 26, 2019 @ 09:27 PM','','wc-processing','open','closed','order_5c9a99244bc51','order-mar-26-2019-0927-pm','','','2019-03-27 20:24:50','2019-03-27 20:24:50','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=288',0,'shop_order','',3),(291,1,'2019-04-19 17:13:43','2019-04-19 17:13:43','','Order &ndash; April 19, 2019 @ 05:13 PM','','wc-processing','open','closed','order_5cba01c718a3a','order-apr-19-2019-0513-pm','','','2019-04-19 17:17:57','2019-04-19 17:17:57','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=291',0,'shop_order','',2),(292,1,'2019-04-20 01:19:52','2019-04-20 01:19:52','','Order &ndash; April 20, 2019 @ 01:19 AM','','wc-processing','open','closed','order_5cba73b8a4fae','order-apr-20-2019-0119-am','','','2019-04-20 01:19:55','2019-04-20 01:19:55','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=292',0,'shop_order','',1),(293,1,'2019-05-04 01:18:14','2019-05-04 01:18:14','','Order &ndash; May 4, 2019 @ 01:18 AM','','wc-processing','open','closed','order_5ccce8562dd44','order-may-04-2019-0118-am','','','2019-05-04 01:18:16','2019-05-04 01:18:16','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=293',0,'shop_order','',1),(294,1,'2019-05-07 13:16:19','2019-05-07 13:16:19','','Order &ndash; May 7, 2019 @ 01:16 PM','','wc-processing','open','closed','order_5cd18523543c0','order-may-07-2019-0116-pm','','','2019-05-07 13:16:22','2019-05-07 13:16:22','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=294',0,'shop_order','',1),(296,1,'2019-06-02 17:05:37','2019-06-02 17:05:37','','ROBMORITZ','','publish','closed','closed','','robmoritz','','','2019-06-02 17:05:37','2019-06-02 17:05:37','',0,'http://remoterangler.com/?post_type=shop_coupon&#038;p=296',0,'shop_coupon','',0),(297,1,'2019-06-03 05:14:24','2019-06-03 05:14:24','','Order &ndash; June 3, 2019 @ 05:14 AM','','wc-processing','open','closed','order_5cf4acb0c8c79','order-jun-03-2019-0514-am','','','2019-06-03 05:14:27','2019-06-03 05:14:27','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=297',0,'shop_order','',1),(298,1,'2019-06-04 13:42:50','2019-06-04 13:42:50','','Order &ndash; June 4, 2019 @ 01:42 PM','','wc-processing','open','closed','order_5cf6755a1601a','order-jun-04-2019-0142-pm','','','2019-06-04 13:43:27','2019-06-04 13:43:27','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=298',0,'shop_order','',2),(299,1,'2019-06-07 22:48:29','2019-06-07 22:48:29','','Order &ndash; June 7, 2019 @ 10:48 PM','','wc-processing','open','closed','order_5cfae9bd02efa','order-jun-07-2019-1048-pm','','','2019-06-07 22:48:31','2019-06-07 22:48:31','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=299',0,'shop_order','',1),(300,1,'2019-06-09 18:23:40','2019-06-09 18:23:40','','Order &ndash; June 9, 2019 @ 06:23 PM','','wc-processing','open','closed','order_5cfd4eac5f7b8','order-jun-09-2019-0623-pm','','','2019-06-09 18:23:42','2019-06-09 18:23:42','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=300',0,'shop_order','',1),(302,1,'2019-06-29 19:17:52','2019-06-29 19:17:52','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2019-06-29 19:17:52','2019-06-29 19:17:52','',0,'http://remoterangler.com/wp-content/uploads/2019/06/woocommerce-placeholder.png',0,'attachment','image/png',0),(303,0,'2019-11-04 16:09:04','2019-11-05 00:09:04','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay03LjQuMSctLT4KPD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0iLy9yZW1vdGVyYW5nbGVyLmNvbS9zaXRlbWFwLnhzbCI/Pgo8dXJsc2V0IHhtbG5zPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45IiB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIiB4c2k6c2NoZW1hTG9jYXRpb249Imh0dHA6Ly93d3cuc2l0ZW1hcHMub3JnL3NjaGVtYXMvc2l0ZW1hcC8wLjkgaHR0cDovL3d3dy5zaXRlbWFwcy5vcmcvc2NoZW1hcy9zaXRlbWFwLzAuOS9zaXRlbWFwLnhzZCI+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS8yMDE4LzAyLzAyL2hlbGxvLXdvcmxkLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMDJUMDQ6MjQ6MjFaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vaG93aXR3b3Jrcy88L2xvYz48bGFzdG1vZD4yMDE4LTA1LTE1VDAwOjQyOjM5WjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzwvbG9jPjxsYXN0bW9kPjIwMTgtMTItMjdUMDE6MjE6NDZaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNS0wMVQwNzozNjozNlo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9jb250YWN0LzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjdUMDg6MTY6NDlaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vYmxvZy88L2xvYz48bGFzdG1vZD4yMDE4LTAyLTAzVDIyOjE2OjExWjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3Byb2R1Y3RzLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjZUMTA6NTk6MjVaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vY2FydC88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI2VDEwOjQ5OjAxWjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2NoZWNrb3V0LzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjZUMDk6MDE6MzRaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vbXktYWNjb3VudC88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI2VDEwOjA0OjI1WjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3BpdGNoZGVjay88L2xvYz48bGFzdG1vZD4yMDE4LTA2LTE5VDE5OjM5OjI0WjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3N1Y2Nlc3N2aWJlcy88L2xvYz48bGFzdG1vZD4yMDE4LTA2LTA5VDIxOjQ1OjIyWjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2J1eWVyc2d1aWRlLzwvbG9jPjxsYXN0bW9kPjIwMTktMTEtMDRUMjA6NTY6MDNaPC9sYXN0bW9kPjwvdXJsPjwvdXJsc2V0Pgo=','sitemap-1.xml','','trash','closed','closed','','__trashed','','','2019-11-04 16:09:04','2019-11-05 00:09:04','',0,'http://remoterangler.com/?p=303',0,'jp_sitemap','',0),(304,0,'2019-11-04 16:09:04','2019-11-05 00:09:04','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay03LjQuMSctLT4KPD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0iLy9yZW1vdGVyYW5nbGVyLmNvbS9pbWFnZS1zaXRlbWFwLnhzbCI/Pgo8dXJsc2V0IHhtbG5zPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45IiB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIiB4c2k6c2NoZW1hTG9jYXRpb249Imh0dHA6Ly93d3cuc2l0ZW1hcHMub3JnL3NjaGVtYXMvc2l0ZW1hcC8wLjkgaHR0cDovL3d3dy5zaXRlbWFwcy5vcmcvc2NoZW1hcy9zaXRlbWFwLzAuOS9zaXRlbWFwLnhzZCIgeG1sbnM6aW1hZ2U9Imh0dHA6Ly93d3cuZ29vZ2xlLmNvbS9zY2hlbWFzL3NpdGVtYXAtaW1hZ2UvMS4xIj48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2VzcHJlc3NvLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMDNUMjI6MTY6MTFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9lc3ByZXNzby0yLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5Fc3ByZXNzbzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9zYW5kd2ljaC88L2xvYz48bGFzdG1vZD4yMDE4LTAyLTAzVDIyOjE2OjExWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvc2FuZHdpY2gtMi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U2FuZHdpY2g8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vY29mZmVlLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDItMDNUMjI6MTY6MTFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wMi9jb2ZmZWUtMi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Q29mZmVlPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjRUMjI6MzI6MDBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC8yMDE4MDMwOF8yMDAwMTYtZTE1MjQ2MDkwMzQ2MzMuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjIwMTgwMzA4XzIwMDAxNjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI0VDIyOjMzOjI1WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODAzMDhfMjAxMTE2LWUxNTI0NzY3NTgwOTkyLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDMwOF8yMDExMTY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yNlQwNjo0MDoyM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwMzA4XzIwMzU1Ny5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODAzMDhfMjAzNTU3PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjZUMDY6NDQ6MTlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC9zZWN1cmUtcGF5cGFsLXBheW1lbnRzLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5zZWN1cmUtcGF5cGFsLXBheW1lbnRzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjZUMDY6NTQ6NDJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC8yMDE4MDMwOV8wMTAxMDUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjIwMTgwMzA5XzAxMDEwNTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS8yMDE4MDMwOV8wMTA1MzYvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yNlQwNzowNjowMlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwMzA5XzAxMDUzNi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODAzMDlfMDEwNTM2PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzIwMTgwNDA1XzIzMDI0NC88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI3VDAyOjU0OjU2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODA0MDVfMjMwMjQ0LWUxNTI0Nzk3NTE1NTI1LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDQwNV8yMzAyNDQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vcHJvZHVjdC9yZW1vdGUtcmFuZ2xlci00LWhvbGRlcnMvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yN1QwNzo0ODoxN1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwMzA4XzIwMjgzMy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODAzMDhfMjAyODMzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjdUMDk6MDE6MDNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC8yMDE4MDQwNV8yMjAxNTAuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjIwMTgwNDA1XzIyMDE1MDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9hYm91dC88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI2VDA3OjQxOjQ2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODA0MjZfMDAzOTE1LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDQyNl8wMDM5MTU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yNlQxMDo0NDozMFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0L3NlY3VyZV9jaGVja291dF9ub3dfbGFyZ2VfbGFyZ2UucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPnNlY3VyZV9jaGVja291dF9ub3dfbGFyZ2VfbGFyZ2U8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vaG93aXR3b3Jrcy88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI3VDAyOjU1OjIyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvQWxsLXRoZS1yZW1vdGVzLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5BbGwgdGhlIHJlbW90ZXM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vaG93aXR3b3Jrcy88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI3VDAyOjU4OjAwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvQWxsLXRoZS1yZW1vdGVzLTEucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkFsbCB0aGUgcmVtb3RlczwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9ob3dpdHdvcmtzLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjdUMDI6NTk6MjZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC9BbGwtdGhlLXJlbW90ZXMtMi5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+QWxsIHRoZSByZW1vdGVzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2hvd2l0d29ya3MvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yN1QwMzowMTozMFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0L0FsbC10aGUtcmVtb3Rlcy0zLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5BbGwgdGhlIHJlbW90ZXM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vaG93aXR3b3Jrcy88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI3VDAzOjAzOjM2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODAzMDhfMjAzOTE2LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDMwOF8yMDM5MTY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vaG93aXR3b3Jrcy88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI3VDAzOjA0OjQxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODA0MTdfMTI0MDEwLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDQxN18xMjQwMTA8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vaG93aXR3b3Jrcy88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI3VDAzOjA3OjMxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvQmFyLVJlbW90ZXMucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkJhciBSZW1vdGVzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjdUMDg6MjU6MjBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC9mYWNlYm9vay1zaGFyZS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+ZmFjZWJvb2sgc2hhcmU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vcnItbG9nby88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI3VDA4OjMwOjQ0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvUlItTG9nby5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+UlIgTG9nbzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9jcm9wcGVkLXJyLWxvZ28tanBnLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjdUMDg6MzE6MDNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC9jcm9wcGVkLVJSLUxvZ28uanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmNyb3BwZWQtUlItTG9nby5qcGc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vZW5lcmd5LWhlYWxpbmctc21hbGwvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yOVQwMjo0OTo1Nlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0L0VuZXJneS1IZWFsaW5nLXNtYWxsLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5FbmVyZ3kgSGVhbGluZyBzbWFsbDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9hbWVyaWNhbi1mbGFnLXJ1c3RpYy88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI5VDAyOjU2OjA2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvQW1lcmljYW4tRmxhZy1SdXN0aWMucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkFtZXJpY2FuIEZsYWcgUnVzdGljPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2JsdWUtY2xvdWRzLWJrZ2QvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yOVQwMzoxNzozMVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0L0JsdWUtQ2xvdWRzLUJrZ2QuanBlZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5CbHVlIENsb3VkcyBCa2dkPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMzBUMDk6Mjk6NDVaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC8yMDE4MDQyOV8wMjMyMTMuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjIwMTgwNDI5XzAyMzIxMzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTMwVDA5OjM0OjAxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODA0MjlfMDIzNzQ2LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDQyOV8wMjM3NDY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0zMFQwOTozNzoyM1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwNDI5XzAyMjgwNC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODA0MjlfMDIyODA0PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzIwMTgwNDMwXzAxNDYwOC88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTMwVDA5OjQxOjQxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODA0MzBfMDE0NjA4LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDQzMF8wMTQ2MDg8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vaG93aXR3b3Jrcy88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTMwVDA5OjQ0OjQ3WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODA0MzBfMDE1NzMzLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDQzMF8wMTU3MzM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0zMFQwOTo0Njo0Mlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0L1NjcmVlbnNob3RfMjAxODA0MjktMDIxMTI3LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5TY3JlZW5zaG90XzIwMTgwNDI5LTAyMTEyNzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9wcm9kdWN0L3JlbW90ZS1yYW5nbGVyLTYtaG9sZGVycy88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTMwVDA5OjUyOjI0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODA0MjlfMTE1OTAxLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDQyOV8xMTU5MDE8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vcHJvZHVjdC9yZW1vdGUtcmFuZ2xlci0zLWhvbGRlcnMvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0zMFQwOTo1NToxMVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwNDI5XzAyMzIxMy0xLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDQyOV8wMjMyMTM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNS0wMVQwODoxMDo1M1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA1LzIwMTgwNDMwXzIzMTQwMC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODA0MzBfMjMxNDAwPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzIwMTgwMzA5XzAxMDUzNi0yLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDUtMDFUMDg6MTU6MzFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNS8yMDE4MDMwOV8wMTA1MzYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjIwMTgwMzA5XzAxMDUzNjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS8yMDE4MDQwNV8yMzAyNDQtMi88L2xvYz48bGFzdG1vZD4yMDE4LTA1LTAxVDA4OjE3OjQyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDUvMjAxODA0MDVfMjMwMjQ0LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDQwNV8yMzAyNDQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vcmVtb3RlLXJhbmdsZXItbG9nby13aGl0ZS1iYWNrZ3JvdW5kLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDUtMTVUMTc6MjY6MjRaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNS9SZW1vdGUtUmFuZ2xlci1Mb2dvLVdoaXRlLWJhY2tncm91bmQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlJlbW90ZSBSYW5nbGVyIExvZ28gV2hpdGUgYmFja2dyb3VuZDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9jcm9wcGVkLXJlbW90ZS1yYW5nbGVyLWxvZ28td2hpdGUtYmFja2dyb3VuZC1qcGcvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNS0xNVQxNzoyNjo1N1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA1L2Nyb3BwZWQtUmVtb3RlLVJhbmdsZXItTG9nby1XaGl0ZS1iYWNrZ3JvdW5kLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5jcm9wcGVkLVJlbW90ZS1SYW5nbGVyLUxvZ28tV2hpdGUtYmFja2dyb3VuZC5qcGc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd29vY29tbWVyY2UtcGxhY2Vob2xkZXIvPC9sb2M+PGxhc3Rtb2Q+MjAxOS0wNi0yOVQxOToxNzo1Mlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy93b29jb21tZXJjZS1wbGFjZWhvbGRlci5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+d29vY29tbWVyY2UtcGxhY2Vob2xkZXI8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vYnV5ZXJzZ3VpZGUvPC9sb2M+PGxhc3Rtb2Q+MjAxOS0xMS0wNFQyMDozMToxOVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE5LzExL0FtYXpvbi1zY3JlZW5zaG90LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5BbWF6b24gc2NyZWVuc2hvdDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9idXllcnNndWlkZS88L2xvYz48bGFzdG1vZD4yMDE5LTExLTA0VDIwOjUwOjM4WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTkvMTEvU2NyZWVuc2hvdF8yMDE5MTEwNC0xMjM1MzVfQ2hyb21lLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5TY3JlZW5zaG90XzIwMTkxMTA0LTEyMzUzNV9DaHJvbWU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPkNsaWNrIFRoZSBQaWN0dXJlIHRvIHNlZSBpdCBvbiBBbWF6b248L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48L3VybHNldD4K','image-sitemap-1.xml','','trash','closed','closed','','__trashed','','','2019-11-04 16:09:04','2019-11-05 00:09:04','',0,'http://remoterangler.com/?p=304',0,'jp_img_sitemap','',0),(243,1,'2018-06-19 19:36:40','2018-06-19 19:36:40','[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf\" title=\"Remote Rangler one page Summary\"]\r\n\r\n[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-pitch-deck-collab.pdf\" title=\"Remote Rangler pitch deck collab\"]\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf\">Click Here to download Remote Rangler one page Summary</a>\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-pitch-deck-collab.pdf\">Click Here To download The Remote Rangler Pitch Deck</a>','Pitch Deck','','inherit','closed','closed','','123-revision-v1','','','2018-06-19 19:36:40','2018-06-19 19:36:40','',123,'http://remoterangler.com/2018/06/19/123-revision-v1/',0,'revision','',0),(246,1,'2018-06-20 00:35:47','2018-06-20 00:35:47','<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>','Remote Rangler Buyer\'s Guide','','inherit','closed','closed','','234-revision-v1','','','2018-06-20 00:35:47','2018-06-20 00:35:47','',234,'http://remoterangler.com/2018/06/20/234-revision-v1/',0,'revision','',0),(247,1,'2018-07-09 08:51:30','2018-07-09 08:51:30','','Order &ndash; July 9, 2018 @ 08:51 AM','','wc-completed','open','closed','order_5b432212398f4','order-jul-09-2018-0851-am','','','2018-08-08 09:03:35','2018-08-08 09:03:35','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=247',0,'shop_order','',2),(248,1,'2018-07-22 15:15:40','2018-07-22 15:15:40','','Order &ndash; July 22, 2018 @ 03:15 PM','','wc-completed','open','closed','order_5b549f9c102c7','order-jul-22-2018-0315-pm','','','2018-08-08 09:03:33','2018-08-08 09:03:33','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=248',0,'shop_order','',2),(249,1,'2018-08-02 11:27:30','2018-08-02 11:27:30','','Order &ndash; August 2, 2018 @ 11:27 AM','','wc-completed','open','closed','order_5b62eaa2b4db3','order-aug-02-2018-1127-am','','','2018-08-08 09:03:32','2018-08-08 09:03:32','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=249',0,'shop_order','',2),(262,1,'2018-11-13 01:08:38','2018-11-13 01:08:38','','Order &ndash; November 13, 2018 @ 01:08 AM','','wc-processing','open','closed','order_5bea2416a83ad','order-nov-13-2018-0108-am','','','2018-11-13 01:08:41','2018-11-13 01:08:41','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=262',0,'shop_order','',1),(260,1,'2018-10-01 15:51:58','2018-10-01 15:51:58','','Order &ndash; October 1, 2018 @ 03:51 PM','','wc-processing','open','closed','order_5bb2429e26ef4','order-oct-01-2018-0351-pm','','','2018-10-01 15:52:02','2018-10-01 15:52:02','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=260',0,'shop_order','',1),(251,1,'2018-08-08 09:02:31','2018-08-08 09:02:31','','Rob','','publish','closed','closed','','rob','','','2018-08-08 09:02:31','2018-08-08 09:02:31','',0,'http://remoterangler.com/?post_type=shop_coupon&#038;p=251',0,'shop_coupon','',0),(252,1,'2018-08-22 17:20:45','2018-08-22 17:20:45','','Order &ndash; August 22, 2018 @ 05:20 PM','','wc-processing','open','closed','order_5b7d9b6d7044e','order-aug-22-2018-0520-pm','','','2018-08-22 17:20:49','2018-08-22 17:20:49','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=252',0,'shop_order','',1),(132,1,'2018-04-27 02:55:22','2018-04-27 02:55:22','','All the remotes','','inherit','open','closed','','all-the-remotes','','','2018-04-27 02:55:22','2018-04-27 02:55:22','',2,'http://remoterangler.com/wp-content/uploads/2018/04/All-the-remotes.png',0,'attachment','image/png',0),(133,1,'2018-04-27 02:58:00','2018-04-27 02:58:00','','All the remotes','','inherit','open','closed','','all-the-remotes-2','','','2018-04-27 02:58:00','2018-04-27 02:58:00','',2,'http://remoterangler.com/wp-content/uploads/2018/04/All-the-remotes-1.png',0,'attachment','image/png',0),(134,1,'2018-04-27 02:59:26','2018-04-27 02:59:26','','All the remotes','','inherit','open','closed','','all-the-remotes-3','','','2018-04-27 02:59:26','2018-04-27 02:59:26','',2,'http://remoterangler.com/wp-content/uploads/2018/04/All-the-remotes-2.png',0,'attachment','image/png',0),(135,1,'2018-04-27 03:01:30','2018-04-27 03:01:30','','All the remotes','','inherit','open','closed','','all-the-remotes-4','','','2018-04-27 03:01:30','2018-04-27 03:01:30','',2,'http://remoterangler.com/wp-content/uploads/2018/04/All-the-remotes-3.png',0,'attachment','image/png',0),(139,1,'2018-04-27 03:07:31','2018-04-27 03:07:31','','Bar Remotes','','inherit','open','closed','','bar-remotes','','','2018-04-27 03:07:31','2018-04-27 03:07:31','',2,'http://remoterangler.com/wp-content/uploads/2018/04/Bar-Remotes.png',0,'attachment','image/png',0),(144,1,'2018-04-27 03:49:24','2018-04-27 03:49:24','<h1>End The Search For The Remotes!</h1>\r\n<iframe src=\"https://www.youtube.com/embed/pD2o8nm7_io?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<h2>Attach Them all</h2>\r\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\r\n\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" width=\"2000\" height=\"1544\" />\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" width=\"3015\" height=\"2964\" />\r\n\r\ntt\r\n<h2>Keeps Your Batteries Covered</h2>\r\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\r\n\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" width=\"2452\" height=\"2674\" />\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\" alt=\"20180308_202833\" width=\"1416\" height=\"2710\" />\r\n<h2>Hang Them Up Anywhere!</h2>\r\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-27 03:49:24','2018-04-27 03:49:24','',2,'http://remoterangler.com/2018/04/27/2-revision-v1/',0,'revision','',0),(143,1,'2018-04-27 03:48:53','2018-04-27 03:48:53','<h1>\n		End The Search For The Remotes!\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/pD2o8nm7_io?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\"  />\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\"  />\n	<p>tt</p>\n	<h2>Keeps Your Batteries Covered</h2>\n<p>Did the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\" alt=\"20180308_202833\" itemprop=\"image\" height=\"2710\" width=\"1416\"  />\n	<h2>Hang Them Up Anywhere!</h2>\n<p>Find them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.</p>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-27 03:48:53','2018-04-27 03:48:53','',2,'http://remoterangler.com/2018/04/27/2-revision-v1/',0,'revision','',0),(142,1,'2018-04-27 03:23:49','2018-04-27 03:23:49','\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/pD2o8nm7_io?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n			<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/hero-image-4.jpg\" alt=\"\" /><a href=\"#\" target=\"_self\"></a>			\n				<h2>A Team That Helps You Succeed</h2><p>Mundum tum duae rerum. Terra cornua. Ignea primaque nitidis dissaepserat mutatas derecti. Sunt circumfluus extendi aethere. Illic chaos: habentem zonae sorbentur meis peregrinum. Lucis formaeque ita chaos: erat.</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Get Started\n					</a>\n			<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/03/hero-image-3.png\" alt=\"\" /><a href=\"#\" target=\"_self\"></a>			\n				<h2>Totidem lumina adsiduis concordi</h2><p>Mundum tum duae rerum. Terra cornua. Ignea primaque nitidis dissaepserat mutatas derecti. Sunt circumfluus extendi aethere. Illic chaos: habentem zonae sorbentur meis peregrinum. Lucis formaeque ita chaos: erat.</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Get Started\n					</a>\n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/bb-plugin/cache/9814538046_86523fdb81_o-1300x870-landscape.jpg\" alt=\"9814538046_86523fdb81_o-1300x870\" itemprop=\"image\" height=\"870\" width=\"1300\"  />\n				</a>\n<h2><a href=\"#\" target=\"_self\">About Us</a></h2>		\n			<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/bb-plugin/cache/iStock_000020420411Small-landscape.jpg\" alt=\"A group of successful and satisfied businesspeople looking upwards smiling\" itemprop=\"image\" height=\"565\" width=\"849\"  />\n				</a>\n<h2><a href=\"#\" target=\"_self\">Our Staff</a></h2>		\n			<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/bb-plugin/cache/IMG_4340-1300x866-1024x682-landscape.jpg\" alt=\"IMG_4340-1300x866\" itemprop=\"image\" height=\"682\" width=\"1024\"  />\n				</a>\n<h2><a href=\"#\" target=\"_self\">Our Services</a></h2>		\n			<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/bb-plugin/cache/IMG_6779-1300x866-1024x682-landscape.jpg\" alt=\"IMG_6779-1300x866\" itemprop=\"image\" height=\"682\" width=\"1024\"  />\n				</a>\n<h2><a href=\"#\" target=\"_self\">Get In Touch</a></h2>		\n			<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n		<h3>Are you ready to find out how we can help you succeed?</h3>\n		<p>Ab iapeto secant grandia pendebat speciem orbem. Terris di induit.</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Get Started Today!\n					</a>\n		<h3>	\n	Innovation</h3>		\n			<p>Traxit locavit piscibus retinebat pro dextra pendebat aliud tollere flexi est diverso.</p>\n		<h3>	\n	Expertise</h3>		\n			<p>Traxit locavit piscibus retinebat pro dextra pendebat aliud tollere flexi est diverso.</p>\n		<h3>	\n	Excellence</h3>		\n			<p>Traxit locavit piscibus retinebat pro dextra pendebat aliud tollere flexi est diverso.</p>\n	<iframe src=\"https://www.google.com/maps/embed/v1/place?key=AIzaSyD09zQ9PNDNNy9TadMuzRV_UsPUoWKntt8&q=1865+Winchester+Blvd+%23202+Campbell%2C+CA+95008\" style=\"border:0;width:100%;height:400px\"></iframe>\n	<h3>Get In Touch</h3>\n<p>We would love to hear from you!</p>\n<p>p 408.999.9999<br />f 408.888.8888<br />e themes@fastlinemedia.com</p>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-27 03:23:49','2018-04-27 03:23:49','',2,'http://remoterangler.com/2018/04/27/2-revision-v1/',0,'revision','',0),(141,1,'2018-04-27 03:20:23','2018-04-27 03:20:23','\n	<iframe class=\'youtube-player\' type=\'text/html\' width=\'1200\' height=\'705\' src=\'http://www.youtube.com/embed/pD2o8nm7_io?version=3&#038;rel=1&#038;fs=1&#038;autohide=2&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe>\n			<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/02/hero-image-4.jpg\" alt=\"\" /><a href=\"#\" target=\"_self\"></a>			\n				<h2>A Team That Helps You Succeed</h2><p>Mundum tum duae rerum. Terra cornua. Ignea primaque nitidis dissaepserat mutatas derecti. Sunt circumfluus extendi aethere. Illic chaos: habentem zonae sorbentur meis peregrinum. Lucis formaeque ita chaos: erat.</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Get Started\n					</a>\n			<img src=\"https://demos.wpbeaverbuilder.com/wp-content/uploads/sites/4/2014/03/hero-image-3.png\" alt=\"\" /><a href=\"#\" target=\"_self\"></a>			\n				<h2>Totidem lumina adsiduis concordi</h2><p>Mundum tum duae rerum. Terra cornua. Ignea primaque nitidis dissaepserat mutatas derecti. Sunt circumfluus extendi aethere. Illic chaos: habentem zonae sorbentur meis peregrinum. Lucis formaeque ita chaos: erat.</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Get Started\n					</a>\n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/bb-plugin/cache/9814538046_86523fdb81_o-1300x870-landscape.jpg\" alt=\"9814538046_86523fdb81_o-1300x870\" itemprop=\"image\" height=\"870\" width=\"1300\"  />\n				</a>\n<h2><a href=\"#\" target=\"_self\">About Us</a></h2>		\n			<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/bb-plugin/cache/iStock_000020420411Small-landscape.jpg\" alt=\"A group of successful and satisfied businesspeople looking upwards smiling\" itemprop=\"image\" height=\"565\" width=\"849\"  />\n				</a>\n<h2><a href=\"#\" target=\"_self\">Our Staff</a></h2>		\n			<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/bb-plugin/cache/IMG_4340-1300x866-1024x682-landscape.jpg\" alt=\"IMG_4340-1300x866\" itemprop=\"image\" height=\"682\" width=\"1024\"  />\n				</a>\n<h2><a href=\"#\" target=\"_self\">Our Services</a></h2>		\n			<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n				<a href=\"#\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/bb-plugin/cache/IMG_6779-1300x866-1024x682-landscape.jpg\" alt=\"IMG_6779-1300x866\" itemprop=\"image\" height=\"682\" width=\"1024\"  />\n				</a>\n<h2><a href=\"#\" target=\"_self\">Get In Touch</a></h2>		\n			<p>Os moles pendebat. Sidera fuerat. Ulla solum homo dei. Phoebe nec temperiem gravitate diffundi unus perpetuum media.</p>\n<a href=\"#\" target=\"_self\">Read More</a>		 \n		<h3>Are you ready to find out how we can help you succeed?</h3>\n		<p>Ab iapeto secant grandia pendebat speciem orbem. Terris di induit.</p>\n			<a href=\"#\" target=\"_self\" role=\"button\">\n							Get Started Today!\n					</a>\n		<h3>	\n	Innovation</h3>		\n			<p>Traxit locavit piscibus retinebat pro dextra pendebat aliud tollere flexi est diverso.</p>\n		<h3>	\n	Expertise</h3>		\n			<p>Traxit locavit piscibus retinebat pro dextra pendebat aliud tollere flexi est diverso.</p>\n		<h3>	\n	Excellence</h3>		\n			<p>Traxit locavit piscibus retinebat pro dextra pendebat aliud tollere flexi est diverso.</p>\n	<iframe src=\"https://www.google.com/maps/embed/v1/place?key=AIzaSyD09zQ9PNDNNy9TadMuzRV_UsPUoWKntt8&q=1865+Winchester+Blvd+%23202+Campbell%2C+CA+95008\" style=\"border:0;width:100%;height:400px\"></iframe>\n	<h3>Get In Touch</h3>\n<p>We would love to hear from you!</p>\n<p>p 408.999.9999<br />f 408.888.8888<br />e themes@fastlinemedia.com</p>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-27 03:20:23','2018-04-27 03:20:23','',2,'http://remoterangler.com/2018/04/27/2-revision-v1/',0,'revision','',0),(145,1,'2018-04-27 03:54:56','2018-04-27 03:54:56','<h1>\n		End The Search For The Remotes!\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/pD2o8nm7_io?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\"  />\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\"  />\n	<p>tt</p>\n	<h2>Keeps Your Batteries Covered</h2>\n<p>Did the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\" alt=\"20180308_202833\" itemprop=\"image\" height=\"2710\" width=\"1416\"  />\n	<h2>Hang Them Up Anywhere!</h2>\n<p>Find them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.</p>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-27 03:54:56','2018-04-27 03:54:56','',2,'http://remoterangler.com/2018/04/27/2-revision-v1/',0,'revision','',0),(147,1,'2018-04-27 07:33:40','2018-04-27 07:33:40','<h1>End The Search For The Remotes!</h1>\r\n<iframe src=\"https://www.youtube.com/embed/pD2o8nm7_io?rel=0\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" width=\"2000\" height=\"1544\" />\r\n<h2>Attach Them all</h2>\r\nThis portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.\r\n\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" width=\"3015\" height=\"2964\" />\r\n<h2>Universal - Fits All Remotes</h2>\r\nElastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!\r\n\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" width=\"2452\" height=\"2674\" />\r\n<h2>Keeps Your Batteries Covered</h2>\r\nDid the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.\r\n\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\" alt=\"20180308_202833\" width=\"1416\" height=\"2710\" />\r\n<h2>Hang Them Up Anywhere!</h2>\r\nFind them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.\r\n\r\n<a role=\"button\" href=\"http://remoterangler.com/products/\" target=\"_self\">\r\nBuy Now!\r\n</a>','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-27 07:33:40','2018-04-27 07:33:40','',2,'http://remoterangler.com/2018/04/27/2-revision-v1/',0,'revision','',0),(146,1,'2018-04-27 07:33:18','2018-04-27 07:33:18','<h1>\n		End The Search For The Remotes!\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/pD2o8nm7_io?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\"  />\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\"  />\n	<h2>Universal - Fits All Remotes</h2>\n<p>Elastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n	<h2>Keeps Your Batteries Covered</h2>\n<p>Did the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\" alt=\"20180308_202833\" itemprop=\"image\" height=\"2710\" width=\"1416\"  />\n	<h2>Hang Them Up Anywhere!</h2>\n<p>Find them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.</p>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-27 07:33:18','2018-04-27 07:33:18','',2,'http://remoterangler.com/2018/04/27/2-revision-v1/',0,'revision','',0),(148,1,'2018-04-27 07:35:26','2018-04-27 07:35:26','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1024\" width=\"632\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/products/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/products/\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\"  />\n','','','inherit','closed','closed','','27-revision-v1','','','2018-04-27 07:35:26','2018-04-27 07:35:26','',27,'http://remoterangler.com/2018/04/27/27-revision-v1/',0,'revision','',0),(151,1,'2018-04-27 07:48:22','2018-04-27 07:48:22','SATISFACTION GUARANTEED!!!!!!!! A Universal Remote Control attachment that fits all your remotes. Invented for people who have more than one remote for their TV and are constantly misplacing one or another. Keep track of all your remotes by having them together at all times. The lanyard helps you spot your remotes when they get under your sheets or under everything else when you’re watching TV in bed. Hang them up when your done so you can find them easier and keep your room or table clutter free from all those remotes. Comes with 2 lanyard and 4 remote holders.','Remote Rangler - 4 Holders','<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n 	<li><span class=\"a-list-item\">NEVER WORRY ABOUT LOSING YOUR REMOTES AGAIN!</span></li>\r\n 	<li><span class=\"a-list-item\">Attach all your remotes to this Remote holder</span></li>\r\n 	<li><span class=\"a-list-item\">HANG THEM UP ANYWHERE! Keep remote clutter off your tables</span></li>\r\n 	<li><span class=\"a-list-item\">This Portable Remote Caddy allows you to Find them All At Once</span></li>\r\n 	<li><span class=\"a-list-item\">COMPATIBLE with all your remote controls (including all television, cable TV, satellite TV, DVR, DVD, VCR, Blu-ray, and media-player remotes from major brands like Sony, Samsung, LG, Panasonic, Toshiba, Philips, Sharp, Vizio, Mitsubishi, Hisense, Insignia, JVC, Magnavox, Sanyo, Sylvania, Apple, Fire TV, and Roku)and any other remote you need to keep track of.</span></li>\r\n</ul>','publish','open','closed','','remote-rangler-4-holders','','','2018-12-10 21:20:17','2018-12-10 21:20:17','',0,'http://remoterangler.com/?post_type=product&#038;p=151',0,'product','',0),(152,1,'2018-12-10 21:21:45','2018-12-10 21:21:45','SATISFACTION GUARANTEED!!!!!!!! A Universal Remote Control attachment that fits all your remotes. Invented for people who have more than one remote for their TV and are constantly misplacing one or another. Keep track of all your remotes by having them together at all times. The lanyard helps you spot your remotes when they get under your sheets or under everything else when you’re watching TV in bed. Hang them up when your done so you can find them easier and keep your room or table clutter free from all those remotes. Comes with 2 lanyard and 4 remote holders.','Remote Rangler - 4 Holders','<ul class=\"a-unordered-list a-vertical a-spacing-none\"><li><span class=\"a-list-item\">NEVER WORRY ABOUT LOSING YOUR REMOTES AGAIN!</span></li><li><span class=\"a-list-item\">Attach all your remotes to this Remote holder</span></li><li><span class=\"a-list-item\">HANG THEM UP ANYWHERE! Keep remote clutter off your tables</span></li><li><span class=\"a-list-item\">This Portable Remote Caddy allows you to Find them All At Once</span></li><li><span class=\"a-list-item\">COMPATIBLE with all your remote controls (including all television, cable TV, satellite TV, DVR, DVD, VCR, Blu-ray, and media-player remotes from major brands like Sony, Samsung, LG, Panasonic, Toshiba, Philips, Sharp, Vizio, Mitsubishi, Hisense, Insignia, JVC, Magnavox, Sanyo, Sylvania, Apple, Fire TV, and Roku)and any other remote you need to keep track of.</span></li></ul>','inherit','closed','closed','','151-autosave-v1','','','2018-12-10 21:21:45','2018-12-10 21:21:45','',151,'http://remoterangler.com/2018/04/27/151-autosave-v1/',0,'revision','',0),(153,1,'2018-04-27 08:09:27','2018-04-27 08:09:27','<h1>\n		About Us\n	</h1>\n	<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\" alt=\"20180426_003915\" itemprop=\"image\" height=\"744\" width=\"1024\"  />\n<h3>\n		Our Team\n	</h3>\n	<p>That\'s us on the first day we received our initial shipment of Remote Ranglers and started assembling them. I\'m Joe the one on the left and my partner Troy, is on the right. He just got out of work at Honda. Just a couple of regular guys with high hopes and BIG DREAMS.</p>\n<h3>\n		Our Story\n	</h3>\n	<p>It all started with the fact that I have way too many remotes to keep track of. I kid you not, I have 8 remotes in just my bedroom! It seems that the more technology we get, the more remotes we have to operate them. Here\'s a list of my many remotes: TV, Soundbar, Firestick, light switch, air-conditioner, aroma diffuser and 2 fan remotes, one for me and one for my girl, because she doesn\'t like it too cold. I use these remotes everyday and keeping track of each one became such a major headache. They were either in the sheets, under the pillows, under the bed or under me, sucked in by my gravitational pull (as my girlfriend puts it.) I had to do something, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard. They are always nearby and ALWAYS together. I know I\'m not the only one with this problem, people have been losing remotes since they were invented. I realized I couldn\'t live without it. That\'s when I knew other people needed this product too. So, out of necessity I created the Remote Rangler! My buddy &amp; coworker Troy was one of my first customers. He loved it so much, that he offered to help me launch it,as his previous job experience related to our business well, and we became partners. Now, we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!</p>\n','About Us','','inherit','closed','closed','','28-revision-v1','','','2018-04-27 08:09:27','2018-04-27 08:09:27','',28,'http://remoterangler.com/2018/04/27/28-revision-v1/',0,'revision','',0),(154,1,'2018-04-27 08:10:40','2018-04-27 08:10:40','<h1>\n		About Us\n	</h1>\n	<p style=\"text-align: center; font-weight: 300; font-size: 19px;\">We do things a bit differently, and that\'s the way we like it!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\" alt=\"20180426_003915\" itemprop=\"image\" height=\"744\" width=\"1024\"  />\n<h3>\n		Our Team\n	</h3>\n	<p>That\'s us on the first day we received our initial shipment of Remote Ranglers and started assembling them. I\'m Joe the one on the left and my partner Troy, is on the right. He just got out of work at Honda. Just a couple of regular guys with high hopes and BIG DREAMS.</p>\n<h3>\n		Our Story\n	</h3>\n	<p>It all started with the fact that I have way too many remotes to keep track of. I kid you not, I have 8 remotes in just my bedroom! It seems that the more technology we get, the more remotes we have to operate them. Here\'s a list of my many remotes: TV, Soundbar, Firestick, light switch, air-conditioner, aroma diffuser and 2 fan remotes, one for me and one for my girl, because she doesn\'t like it too cold. I use these remotes everyday and keeping track of each one became such a major headache. They were either in the sheets, under the pillows, under the bed or under me, sucked in by my gravitational pull (as my girlfriend puts it.) I had to do something, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard. They are always nearby and ALWAYS together. I know I\'m not the only one with this problem, people have been losing remotes since they were invented. I realized I couldn\'t live without it. That\'s when I knew other people needed this product too. So, out of necessity I created the Remote Rangler! My buddy &amp; coworker Troy was one of my first customers. He loved it so much, that he offered to help me launch it, as his previous job experience related to our business well, and we became partners. Now, we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!</p>\n','About Us','','inherit','closed','closed','','28-revision-v1','','','2018-04-27 08:10:40','2018-04-27 08:10:40','',28,'http://remoterangler.com/2018/04/27/28-revision-v1/',0,'revision','',0),(155,1,'2018-04-27 08:25:20','2018-04-27 08:25:20','','facebook share','','inherit','open','closed','','facebook-share','','','2018-04-27 08:25:20','2018-04-27 08:25:20','',27,'http://remoterangler.com/wp-content/uploads/2018/04/facebook-share.jpg',0,'attachment','image/jpeg',0),(161,1,'2018-04-27 09:55:44','2018-04-27 09:55:44','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1024\" width=\"632\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/products/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/products/\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\"  />\n','','','inherit','closed','closed','','27-revision-v1','','','2018-04-27 09:55:44','2018-04-27 09:55:44','',27,'http://remoterangler.com/2018/04/27/27-revision-v1/',0,'revision','',0),(157,1,'2018-04-27 08:28:53','2018-04-27 08:28:53','<h2>Tired Of Losing The Remotes? Now There\'s Hope!</h2>\r\n<a role=\"button\" href=\"http://remoterangler.com/products/\" target=\"_self\">\r\nBuy Now!\r\n</a>\r\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" width=\"547\" height=\"1024\" />\r\n</a>\r\n<h3><a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">How It Works</a></h3>\r\nStop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.\r\n\r\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">Read More</a>\r\n<a href=\"http://remoterangler.com/about\" target=\"_self\">\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\" alt=\"20180309_010105\" width=\"632\" height=\"1024\" />\r\n</a>\r\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>\r\nMeet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.\r\n\r\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>\r\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" width=\"2452\" height=\"2674\" />\r\n</a>\r\n<h3><a href=\"http://remoterangler.com/products/\" target=\"_self\">Products</a></h3>\r\nRemote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.\r\n\r\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">Read More</a>\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" width=\"480\" height=\"324\" />\r\n<a href=\"http://www.facebook.com/sharer.php?u=http%3A%2F%2Fremoterangler.com%2F%3Ffl_builder\" target=\"_blank\" rel=\"noopener\">\r\n<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/facebook-share.jpg\" alt=\"facebook share\" />\r\n</a>','','','inherit','closed','closed','','27-revision-v1','','','2018-04-27 08:28:53','2018-04-27 08:28:53','',27,'http://remoterangler.com/2018/04/27/27-revision-v1/',0,'revision','',0),(156,1,'2018-04-27 08:27:55','2018-04-27 08:27:55','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1024\" width=\"632\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/products/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/products/\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\"  />\n<a href=\"http://www.facebook.com/sharer.php?u=http%3A%2F%2Fremoterangler.com%2F%3Ffl_builder\" target=\"_blank\" onclick=\"window.open(this.href,\'social-share\',\'left=20,top=20,width=500,height=500,toolbar=1,resizable=0\');return false;\">		\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/facebook-share.jpg\" alt=\"facebook share\" itemprop=\"image\"/>\n		</a>','','','inherit','closed','closed','','27-revision-v1','','','2018-04-27 08:27:55','2018-04-27 08:27:55','',27,'http://remoterangler.com/2018/04/27/27-revision-v1/',0,'revision','',0),(158,1,'2018-04-27 08:30:44','2018-04-27 08:30:44','','RR Logo','','inherit','open','closed','','rr-logo','','','2018-04-27 08:30:44','2018-04-27 08:30:44','',0,'http://remoterangler.com/wp-content/uploads/2018/04/RR-Logo.jpg',0,'attachment','image/jpeg',0),(159,1,'2018-04-27 08:31:03','2018-04-27 08:31:03','http://remoterangler.com/wp-content/uploads/2018/04/cropped-RR-Logo.jpg','cropped-RR-Logo.jpg','','inherit','open','closed','','cropped-rr-logo-jpg','','','2018-04-27 08:31:03','2018-04-27 08:31:03','',0,'http://remoterangler.com/wp-content/uploads/2018/04/cropped-RR-Logo.jpg',0,'attachment','image/jpeg',0),(238,1,'2018-06-19 18:04:30','2018-06-19 18:04:30','<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\n\n&nbsp;\n\n&nbsp;\n\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>','Remote Rangler Buyer\'s Guide','','inherit','closed','closed','','234-autosave-v1','','','2018-06-19 18:04:30','2018-06-19 18:04:30','',234,'http://remoterangler.com/2018/06/19/234-autosave-v1/',0,'revision','',0),(239,1,'2018-06-19 18:02:27','2018-06-19 18:02:27','<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>','Remote Rangler Buyers Guide','','inherit','closed','closed','','234-revision-v1','','','2018-06-19 18:02:27','2018-06-19 18:02:27','',234,'http://remoterangler.com/2018/06/19/234-revision-v1/',0,'revision','',0),(245,1,'2018-06-20 00:34:17','2018-06-20 00:34:17','&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>','Remote Rangler Buyer\'s Guide','','inherit','closed','closed','','234-revision-v1','','','2018-06-20 00:34:17','2018-06-20 00:34:17','',234,'http://remoterangler.com/2018/06/20/234-revision-v1/',0,'revision','',0),(240,1,'2018-06-19 18:04:37','2018-06-19 18:04:37','<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a>','Remote Rangler Buyer\'s Guide','','inherit','closed','closed','','234-revision-v1','','','2018-06-19 18:04:37','2018-06-19 18:04:37','',234,'http://remoterangler.com/2018/06/19/234-revision-v1/',0,'revision','',0),(241,1,'2018-06-19 19:34:55','2018-06-19 19:34:55','[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf\" title=\"Remote Rangler one page Summary\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf\">Click Here to download Remote Rangler one page Summary</a>\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-pitch-deck-collab.pdf\">Click Here To See The Remote Rangler Pitch Deck</a>','Pitch Deck','','inherit','closed','closed','','123-revision-v1','','','2018-06-19 19:34:55','2018-06-19 19:34:55','',123,'http://remoterangler.com/2018/06/19/123-revision-v1/',0,'revision','',0),(244,1,'2018-06-19 19:39:24','2018-06-19 19:39:24','[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf\" title=\"Remote Rangler one page Summary\"]\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf\">Click Here to download Remote Rangler one page Summary</a>\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-pitch-deck-collab.pdf\">Click Here To download The Remote Rangler Pitch Deck</a>','Pitch Deck','','inherit','closed','closed','','123-revision-v1','','','2018-06-19 19:39:24','2018-06-19 19:39:24','',123,'http://remoterangler.com/2018/06/19/123-revision-v1/',0,'revision','',0),(242,1,'2018-06-19 19:36:12','2018-06-19 19:36:12','[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf\" title=\"Remote Rangler one page Summary\"]\r\n\r\n[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-pitch-deck-collab.pdf\" title=\"Remote Rangler pitch deck collab\"]\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf\">Click Here to download Remote Rangler one page Summary</a>\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-pitch-deck-collab.pdf\">Click Here To See The Remote Rangler Pitch Deck</a>','Pitch Deck','','inherit','closed','closed','','123-revision-v1','','','2018-06-19 19:36:12','2018-06-19 19:36:12','',123,'http://remoterangler.com/2018/06/19/123-revision-v1/',0,'revision','',0),(162,1,'2018-04-27 09:59:52','2018-04-27 09:59:52','','Connect with us','','publish','closed','closed','','connect-with-us','','','2018-04-27 09:59:52','2018-04-27 09:59:52','',0,'http://remoterangler.com/fl-builder-template/connect-with-us/',0,'fl-builder-template','',0),(163,1,'2018-04-27 10:02:54','2018-04-27 10:02:54','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1024\" width=\"632\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/products/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/products/\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\"  />\n<h3>\n		CONNECT WITH US\n	</h3>\n','','','inherit','closed','closed','','27-revision-v1','','','2018-04-27 10:02:54','2018-04-27 10:02:54','',27,'http://remoterangler.com/2018/04/27/27-revision-v1/',0,'revision','',0),(164,1,'2018-04-28 18:22:52','2018-04-28 18:22:52','<h1>\n		End The Search For The Remotes!\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\"  />\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\"  />\n	<h2>Universal - Fits All Remotes</h2>\n<p>Elastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\"  />\n	<h2>Keeps Your Batteries Covered</h2>\n<p>Did the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_202833.jpg\" alt=\"20180308_202833\" itemprop=\"image\" height=\"2710\" width=\"1416\"  />\n	<h2>Hang Them Up Anywhere!</h2>\n<p>Find them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.</p>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-28 18:22:52','2018-04-28 18:22:52','',2,'http://remoterangler.com/2018/04/28/2-revision-v1/',0,'revision','',0),(165,1,'2018-04-29 02:49:56','2018-04-29 02:49:56','','Energy Healing small','','inherit','open','closed','','energy-healing-small','','','2018-04-29 02:49:56','2018-04-29 02:49:56','',0,'http://remoterangler.com/wp-content/uploads/2018/04/Energy-Healing-small.png',0,'attachment','image/png',0),(167,1,'2018-04-29 02:56:06','2018-04-29 02:56:06','','American Flag Rustic','','inherit','open','closed','','american-flag-rustic','','','2018-04-29 02:56:06','2018-04-29 02:56:06','',0,'http://remoterangler.com/wp-content/uploads/2018/04/American-Flag-Rustic.png',0,'attachment','image/png',0),(168,1,'2018-04-29 03:17:31','2018-04-29 03:17:31','','Blue Clouds Bkgd','','inherit','open','closed','','blue-clouds-bkgd','','','2018-04-29 03:17:31','2018-04-29 03:17:31','',0,'http://remoterangler.com/wp-content/uploads/2018/04/Blue-Clouds-Bkgd.jpeg',0,'attachment','image/jpeg',0),(170,1,'2018-04-29 03:28:15','2018-04-29 03:28:15','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\" title=\"20180308_203557\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1024\" width=\"632\" title=\"20180309_010105\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/products/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\" title=\"20180405_220150\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/products/\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\" title=\"secure_checkout_now_large_large\"  />\n<h3>\n		CONNECT WITH US\n	</h3>\n','','','inherit','closed','closed','','27-revision-v1','','','2018-04-29 03:28:15','2018-04-29 03:28:15','',27,'http://remoterangler.com/2018/04/29/27-revision-v1/',0,'revision','',0),(172,1,'2018-04-29 05:58:13','2018-04-29 05:58:13','','ten','','publish','closed','closed','','fam','','','2019-11-04 09:25:20','2019-11-04 17:25:20','',0,'http://remoterangler.com/?post_type=shop_coupon&#038;p=172',0,'shop_coupon','',0),(232,1,'2018-06-09 21:45:22','2018-06-09 21:45:22','&nbsp;\r\n\r\n1. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Luxury-the-Life.wma\">Luxury the Life</a>\r\n\r\n2. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Smilen.wma\">Smilen</a>\r\n\r\n3. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/DO-IT.wma\">DO IT!</a>\r\n\r\n4. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Itchy-Palms.wma\">Itchy Palms</a>\r\n\r\n5. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/No-one-as-hard-as-us.wma\">No one as hard as us</a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Success-Vibes.zip\">Click here to download Album - Success Vibes</a>\r\n\r\n&nbsp;\r\n\r\n[embed]https://youtu.be/crJy2dynj-Y[/embed]','Benny Bonez - Success Vibes','','inherit','closed','closed','','220-revision-v1','','','2018-06-09 21:45:22','2018-06-09 21:45:22','',220,'http://remoterangler.com/2018/06/09/220-revision-v1/',0,'revision','',0),(173,1,'2018-04-30 09:29:45','2018-04-30 09:29:45','','20180429_023213','','inherit','open','closed','','20180429_023213','','','2018-04-30 09:29:45','2018-04-30 09:29:45','',27,'http://remoterangler.com/wp-content/uploads/2018/04/20180429_023213.jpg',0,'attachment','image/jpeg',0),(174,1,'2018-04-30 09:34:01','2018-04-30 09:34:01','','20180429_023746','','inherit','open','closed','','20180429_023746','','','2018-04-30 09:34:01','2018-04-30 09:34:01','',27,'http://remoterangler.com/wp-content/uploads/2018/04/20180429_023746.jpg',0,'attachment','image/jpeg',0),(175,1,'2018-04-30 09:37:23','2018-04-30 09:37:23','','20180429_022804','','inherit','open','closed','','20180429_022804','','','2018-04-30 09:37:23','2018-04-30 09:37:23','',27,'http://remoterangler.com/wp-content/uploads/2018/04/20180429_022804.jpg',0,'attachment','image/jpeg',0),(176,1,'2018-04-30 09:41:41','2018-04-30 09:41:41','','20180430_014608','','inherit','open','closed','','20180430_014608','','','2018-04-30 09:41:41','2018-04-30 09:41:41','',0,'http://remoterangler.com/wp-content/uploads/2018/04/20180430_014608.jpg',0,'attachment','image/jpeg',0),(178,1,'2018-04-30 09:44:47','2018-04-30 09:44:47','','20180430_015733','','inherit','open','closed','','20180430_015733','','','2018-04-30 09:44:47','2018-04-30 09:44:47','',2,'http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733.jpg',0,'attachment','image/jpeg',0),(179,1,'2018-04-30 09:46:02','2018-04-30 09:46:02','<h1>\n		End The Search For The Remotes!\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\" title=\"20180308_200016\"  />\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\" title=\"20180405_230244\"  />\n	<h2>Universal - Fits All Remotes</h2>\n<p>Elastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\" title=\"20180405_220150\"  />\n	<h2>Keeps Your Batteries Covered</h2>\n<p>Did the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\" alt=\"20180430_015733\" itemprop=\"image\" height=\"1024\" width=\"572\" title=\"20180430_015733\"  />\n	<h2>Hang Them Up Anywhere!</h2>\n<p>Find them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.</p>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-04-30 09:46:02','2018-04-30 09:46:02','',2,'http://remoterangler.com/2018/04/30/2-revision-v1/',0,'revision','',0),(180,1,'2018-04-30 09:46:42','2018-04-30 09:46:42','','Screenshot_20180429-021127','','inherit','open','closed','','screenshot_20180429-021127','','','2018-04-30 09:46:42','2018-04-30 09:46:42','',28,'http://remoterangler.com/wp-content/uploads/2018/04/Screenshot_20180429-021127.jpg',0,'attachment','image/jpeg',0),(181,1,'2018-04-30 09:52:24','2018-04-30 09:52:24','','20180429_115901','','inherit','open','closed','','20180429_115901','','','2018-04-30 09:52:24','2018-04-30 09:52:24','',95,'http://remoterangler.com/wp-content/uploads/2018/04/20180429_115901.jpg',0,'attachment','image/jpeg',0),(182,1,'2018-04-30 09:55:11','2018-04-30 09:55:11','','20180429_023213','','inherit','open','closed','','20180429_023213-2','','','2018-04-30 09:55:11','2018-04-30 09:55:11','',89,'http://remoterangler.com/wp-content/uploads/2018/04/20180429_023213-1.jpg',0,'attachment','image/jpeg',0),(183,1,'2018-04-30 09:58:38','2018-04-30 09:58:38','SATISFACTION GUARANTEED!!!!!!!! A Universal Remote Control attachment that fits all your remotes. Invented for people who have more than one remote for their TV and are constantly misplacing one or another. Keep track of all your remotes by having them together at all times. The lanyard helps you spot your remotes when they get under your sheets or under everything else when you’re watching TV in bed. Hang them up when your done so you can find them easier and keep your room or table clutter free from all those remotes. Comes with lanyard and 2 remote holders.','Remote Rangler - 2 Holders','<ul class=\"a-unordered-list a-vertical a-spacing-none\">\r\n 	<li><span class=\"a-list-item\">NEVER WORRY ABOUT LOSING YOUR REMOTES AGAIN!</span></li>\r\n 	<li><span class=\"a-list-item\">Attach all your remotes to this Remote holder</span></li>\r\n 	<li><span class=\"a-list-item\">HANG THEM UP ANYWHERE! Keep remote clutter off your tables</span></li>\r\n 	<li><span class=\"a-list-item\">This Portable Remote Caddy allows you to Find them All At Once</span></li>\r\n 	<li><span class=\"a-list-item\">COMPATIBLE with all your remote controls (including all television, cable TV, satellite TV, DVR, DVD, VCR, Blu-ray, and media-player remotes from major brands like Sony, Samsung, LG, Panasonic, Toshiba, Philips, Sharp, Vizio, Mitsubishi, Hisense, Insignia, JVC, Magnavox, Sanyo, Sylvania, Apple, Fire TV, and Roku)and any other remote you need to keep track of.</span></li>\r\n</ul>','publish','open','closed','','remote-rangler-2-holders','','','2019-11-04 09:19:32','2019-11-04 17:19:32','',0,'http://remoterangler.com/?post_type=product&#038;p=183',0,'product','',1),(226,1,'2018-06-09 20:37:36','2018-06-09 20:37:36','[playlist images=\"false\" ids=\"221,222,224,225,223\"]','Benny Bonez - Success Vibes','','inherit','closed','closed','','220-revision-v1','','','2018-06-09 20:37:36','2018-06-09 20:37:36','',220,'http://remoterangler.com/2018/06/09/220-revision-v1/',0,'revision','',0),(227,1,'2018-06-09 20:46:39','2018-06-09 20:46:39','\n	<p>[playlist images=\"false\" ids=\"221,222,224,225,223\"]</p>\n		[playlist ids=\"221,222,224,225,223\" tracklist=\"1\" tracknumbers=\"1\" images=\"0\" artists=\"1\"]	\n','Benny Bonez - Success Vibes','','inherit','closed','closed','','220-revision-v1','','','2018-06-09 20:46:39','2018-06-09 20:46:39','',220,'http://remoterangler.com/2018/06/09/220-revision-v1/',0,'revision','',0),(228,1,'2018-06-09 21:20:38','2018-06-09 21:20:38','&nbsp;\n\n1. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Luxury-the-Life.wma\">Luxury the Life</a>\n\n2. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Smilen.wma\">Smilen</a>\n\n3. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/DO-IT.wma\">DO IT!</a>\n\n4. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Itchy-Palms.wma\">Itchy Palms</a>\n\n5.\n\n&nbsp;\n\n&nbsp;\n\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Success-Vibes.zip\">Click here to download Album - Success Vibes</a>','Benny Bonez - Success Vibes','','inherit','closed','closed','','220-autosave-v1','','','2018-06-09 21:20:38','2018-06-09 21:20:38','',220,'http://remoterangler.com/2018/06/09/220-autosave-v1/',0,'revision','',0),(229,1,'2018-06-09 21:03:54','2018-06-09 21:03:54','','Success Vibes','','inherit','open','closed','','success-vibes','','','2018-06-09 21:03:54','2018-06-09 21:03:54','',220,'http://remoterangler.com/wp-content/uploads/2018/06/Success-Vibes.zip',0,'attachment','application/zip',0),(230,1,'2018-06-09 21:13:57','2018-06-09 21:13:57','<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Success-Vibes.zip\">Click here to download Album - Success Vibes</a>','Benny Bonez - Success Vibes','','inherit','closed','closed','','220-revision-v1','','','2018-06-09 21:13:57','2018-06-09 21:13:57','',220,'http://remoterangler.com/2018/06/09/220-revision-v1/',0,'revision','',0),(231,1,'2018-06-09 21:20:56','2018-06-09 21:20:56','&nbsp;\r\n\r\n1. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Luxury-the-Life.wma\">Luxury the Life</a>\r\n\r\n2. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Smilen.wma\">Smilen</a>\r\n\r\n3. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/DO-IT.wma\">DO IT!</a>\r\n\r\n4. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Itchy-Palms.wma\">Itchy Palms</a>\r\n\r\n5. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/No-one-as-hard-as-us.wma\">No one as hard as us</a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Success-Vibes.zip\">Click here to download Album - Success Vibes</a>','Benny Bonez - Success Vibes','','inherit','closed','closed','','220-revision-v1','','','2018-06-09 21:20:56','2018-06-09 21:20:56','',220,'http://remoterangler.com/2018/06/09/220-revision-v1/',0,'revision','',0),(188,1,'2018-05-01 07:36:36','2018-05-01 07:36:36','<h1>\n		About Us\n	</h1>\n	<p>We do things a bit differently, and that\'s the way we like it!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180426_003915-1024x744.jpg\" alt=\"20180426_003915\" itemprop=\"image\" height=\"744\" width=\"1024\" title=\"20180426_003915\"  />\n<h3>\n		Our Team\n	</h3>\n	<p>That\'s us on the first day we received our initial shipment of Remote Ranglers and started assembling them. I\'m Joe the one on the left and my partner Troy, is on the right. He just got out of work at Honda. Just a couple of regular guys with high hopes and BIG DREAMS.</p>\n<h3>\n		Our Story\n	</h3>\n	<p>It all started with the fact that I have way too many remotes to keep track of. I kid you not, I have 8 remotes in just my bedroom! It seems that the more technology we get, the more remotes we have to operate them. Here\'s a list of my many remotes: TV, Soundbar, Firestick, light switch, air-conditioner, aroma diffuser and 2 fan remotes, one for me and one for my girl, because she doesn\'t like it too cold. I use these remotes everyday and keeping track of each one became such a major headache. They were either in the sheets, under the pillows, under the bed or under me, sucked in by my gravitational pull (as my girlfriend puts it.) I had to do something, and thus the Remote Rangler was born! Well the very rough version of it at least, but it really made a huge difference by being able to hang them up on my headboard. They are always nearby and ALWAYS together. I know I\'m not the only one with this problem, people have been losing remotes since they were invented. I realized I couldn\'t live without it. That\'s when I knew other people needed this product too. So, out of necessity I created the Remote Rangler! My buddy &amp; coworker Troy was one of my first customers. He loved it so much, that he offered to help me launch it, as his previous job experience related to our business well, and we became partners. Now, we are trying to spread the message, TIRED OF LOSING YOUR REMOTES? NOW THERE\'S HOPE!</p>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						View Products\n					</a>\n','About Us','','inherit','closed','closed','','28-revision-v1','','','2018-05-01 07:36:36','2018-05-01 07:36:36','',28,'http://remoterangler.com/2018/05/01/28-revision-v1/',0,'revision','',0),(189,1,'2018-05-01 08:10:53','2018-05-01 08:10:53','','20180430_231400','','inherit','open','closed','','20180430_231400','','','2018-05-01 08:10:53','2018-05-01 08:10:53','',27,'http://remoterangler.com/wp-content/uploads/2018/05/20180430_231400.jpg',0,'attachment','image/jpeg',0),(190,1,'2018-05-01 08:15:31','2018-05-01 08:15:31','','20180309_010536','','inherit','open','closed','','20180309_010536-2','','','2018-05-01 08:15:31','2018-05-01 08:15:31','',0,'http://remoterangler.com/wp-content/uploads/2018/05/20180309_010536.jpg',0,'attachment','image/jpeg',0),(206,1,'2018-05-14 23:05:48','2018-05-14 23:05:48','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\" title=\"20180308_203557\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1024\" width=\"632\" title=\"20180309_010105\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/products/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"1024\" width=\"939\" title=\"20180405_220150\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/products/\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\" title=\"secure_checkout_now_large_large\"  />\n<h3>\n		CONNECT WITH US\n	</h3>\n<h1>\n		How It Works\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\" title=\"20180308_200016\"  />\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\" title=\"20180405_230244\"  />\n	<h2>Universal - Fits All Remotes</h2>\n<p>Elastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!</p>\n[product_page id=\"\"]','','','inherit','closed','closed','','27-revision-v1','','','2018-05-14 23:05:48','2018-05-14 23:05:48','',27,'http://remoterangler.com/2018/05/14/27-revision-v1/',0,'revision','',0),(192,1,'2018-05-01 08:17:42','2018-05-01 08:17:42','','20180405_230244','','inherit','open','closed','','20180405_230244-2','','','2018-05-01 08:17:42','2018-05-01 08:17:42','',0,'http://remoterangler.com/wp-content/uploads/2018/05/20180405_230244.jpg',0,'attachment','image/jpeg',0),(224,1,'2018-06-09 20:34:56','2018-06-09 20:34:56','\"DO IT!\".','DO IT!','','inherit','open','closed','','do-it','','','2018-06-09 21:20:03','2018-06-09 21:20:03','',220,'http://remoterangler.com/wp-content/uploads/2018/06/DO-IT.wma',0,'attachment','audio/x-ms-wma',0),(221,1,'2018-06-09 20:32:03','2018-06-09 20:32:03','\"Luxury the Life\".','Luxury the Life','','inherit','open','closed','','luxury-the-life','','','2018-06-09 21:17:58','2018-06-09 21:17:58','',220,'http://remoterangler.com/wp-content/uploads/2018/06/Luxury-the-Life.wma',0,'attachment','audio/x-ms-wma',0),(222,1,'2018-06-09 20:33:14','2018-06-09 20:33:14','\"Smilen\".','Smilen','','inherit','open','closed','','smilen','','','2018-06-09 21:19:13','2018-06-09 21:19:13','',220,'http://remoterangler.com/wp-content/uploads/2018/06/Smilen.wma',0,'attachment','audio/x-ms-wma',0),(223,1,'2018-06-09 20:34:10','2018-06-09 20:34:10','\"No one as hard as us\".','No one as hard as us','','inherit','open','closed','','no-one-as-hard-as-us','','','2018-06-09 21:20:39','2018-06-09 21:20:39','',220,'http://remoterangler.com/wp-content/uploads/2018/06/No-one-as-hard-as-us.wma',0,'attachment','audio/x-ms-wma',0),(194,1,'2018-05-01 09:17:04','2018-05-01 09:17:04','<a href=\"http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-pitch-deck-collab.pdf\">Click Here To See The Remote Rangler Pitch Deck</a>','Pitch Deck','','inherit','closed','closed','','123-revision-v1','','','2018-05-01 09:17:04','2018-05-01 09:17:04','',123,'http://remoterangler.com/2018/05/01/123-revision-v1/',0,'revision','',0),(195,1,'2018-05-01 09:20:49','2018-05-01 09:20:49','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\" title=\"20180308_203557\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1024\" width=\"632\" title=\"20180309_010105\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		 \n				<a href=\"http://remoterangler.com/products/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"1024\" width=\"939\" title=\"20180405_220150\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/products/\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">Read More</a>		 \n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\" title=\"secure_checkout_now_large_large\"  />\n<h3>\n		CONNECT WITH US\n	</h3>\n','','','inherit','closed','closed','','27-revision-v1','','','2018-05-01 09:20:49','2018-05-01 09:20:49','',27,'http://remoterangler.com/2018/05/01/27-revision-v1/',0,'revision','',0),(196,1,'2018-05-01 18:30:45','2018-05-01 18:30:45','','Order &ndash; May 1, 2018 @ 06:30 PM','','wc-completed','open','closed','order_5ae8b2556c50f','order-may-01-2018-0630-pm','','','2018-08-08 09:03:36','2018-08-08 09:03:36','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=196',0,'shop_order','',3),(197,1,'2018-05-01 18:36:52','2018-05-01 18:36:52','','Refund &ndash; May 01, 2018 @ 06:36 PM','','wc-completed','closed','closed','order_5ae8b3c4620cc','refund-may-01-2018-0636-pm','','','2018-05-01 18:36:52','2018-05-01 18:36:52','',196,'http://remoterangler.com/?shop_order_refund=refund-may-01-2018-0636-pm',0,'shop_order_refund','',0),(225,1,'2018-06-09 20:35:59','2018-06-09 20:35:59','\"Itchy Palms\".','Itchy Palms','','inherit','open','closed','','itchy-palms','','','2018-06-09 21:20:15','2018-06-09 21:20:15','',220,'http://remoterangler.com/wp-content/uploads/2018/06/Itchy-Palms.wma',0,'attachment','audio/x-ms-wma',0),(259,1,'2018-09-24 22:53:30','2018-09-24 22:53:30','','Order &ndash; September 24, 2018 @ 10:53 PM','','wc-processing','open','closed','order_5ba96aea48585','order-sep-24-2018-1053-pm','','','2018-09-24 22:53:33','2018-09-24 22:53:33','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=259',0,'shop_order','',1),(267,1,'2018-12-10 21:02:29','2018-12-10 21:02:29','','Order &ndash; December 10, 2018 @ 09:02 PM','','wc-processing','open','closed','order_5c0ed4650bb76','order-dec-10-2018-0902-pm','','','2018-12-11 19:52:18','2018-12-11 19:52:18','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=267',0,'shop_order','',3),(265,1,'2018-12-06 17:33:38','2018-12-06 17:33:38','','Order &ndash; December 6, 2018 @ 05:33 PM','','wc-on-hold','open','closed','order_5c095d726d853','order-dec-06-2018-0533-pm','','','2018-12-06 17:37:28','2018-12-06 17:37:28','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=265',0,'shop_order','',1),(268,1,'2018-12-10 21:27:18','2018-12-10 21:27:18','','Order &ndash; December 10, 2018 @ 09:27 PM','','wc-cancelled','open','closed','order_5c0eda36dde6c','order-dec-10-2018-0927-pm','','','2018-12-10 22:30:21','2018-12-10 22:30:21','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=268',0,'shop_order','',1),(269,1,'2018-12-19 16:02:09','2018-12-19 16:02:09','','Order &ndash; December 19, 2018 @ 04:02 PM','','wc-cancelled','open','closed','order_5c1a6b817f87d','order-dec-19-2018-0402-pm','','','2018-12-19 16:05:48','2018-12-19 16:05:48','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=269',0,'shop_order','',1),(270,1,'2018-12-19 16:07:30','2018-12-19 16:07:30','','Order &ndash; December 19, 2018 @ 04:07 PM','','wc-processing','open','closed','order_5c1a6cc24a991','order-dec-19-2018-0407-pm','','','2018-12-19 16:10:48','2018-12-19 16:10:48','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=270',0,'shop_order','',2),(271,1,'2018-12-19 16:14:00','2018-12-19 16:14:00','','Order &ndash; December 19, 2018 @ 04:14 PM','','wc-processing','open','closed','order_5c1a6e4870747','order-dec-19-2018-0414-pm','','','2018-12-19 16:15:13','2018-12-19 16:15:13','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=271',0,'shop_order','',2),(402,1,'2019-08-15 09:57:25','2019-08-15 16:57:25','','Order &ndash; August 15, 2019 @ 09:57 AM','','wc-cancelled','open','closed','wc_order_OWFJYjI86mPxw','order-aug-15-2019-0457-pm','','','2019-08-15 11:09:32','2019-08-15 18:09:32','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=402',0,'shop_order','',1),(403,1,'2019-08-18 07:09:39','2019-08-18 14:09:39','','Order &ndash; August 18, 2019 @ 07:09 AM','','wc-processing','open','closed','wc_order_xRV7rtOZDpaBj','order-aug-18-2019-0209-pm','','','2019-08-18 07:09:41','2019-08-18 14:09:41','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=403',0,'shop_order','',2),(404,1,'2019-08-22 13:16:32','2019-08-22 20:16:32','','Order &ndash; August 22, 2019 @ 01:16 PM','','wc-cancelled','open','closed','wc_order_7ktF3gnjdk0Bi','order-aug-22-2019-0816-pm','','','2019-08-22 14:23:15','2019-08-22 21:23:15','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=404',0,'shop_order','',1),(422,1,'2019-11-04 12:56:03','2019-11-04 20:56:03','<!-- wp:fl-builder/layout -->\n	<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a></p>\n				<a href=\"https://www.amazon.com/Universal-Portable-Remote-Holders-Rangler/dp/B07CLFDMHN/ref=cm_cr_arp_d_product_top?ie=UTF8\" target=\"_self\" itemprop=\"url\" rel=\"noopener noreferrer\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\" alt=\"Click The Picture to see it on Amazon\" itemprop=\"image\" height=\"2464\" width=\"1440\" title=\"Screenshot_20191104-123535_Chrome\" onerror=\"this.style.display=\'none\'\"  />\n				</a>\n		Click The Picture to see it on Amazon\n<!-- /wp:fl-builder/layout -->','Remote Rangler Buyer\'s Guide','','inherit','closed','closed','','234-revision-v1','','','2019-11-04 12:56:03','2019-11-04 20:56:03','',234,'http://remoterangler.com/2019/11/04/234-revision-v1/',0,'revision','',0),(405,1,'2019-09-05 16:07:29','2019-09-05 23:07:29','','Order &ndash; September 5, 2019 @ 04:07 PM','','wc-cancelled','open','closed','wc_order_OCYAxthfBLuHy','order-sep-05-2019-1107-pm','','','2019-09-05 18:21:36','2019-09-06 01:21:36','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=405',0,'shop_order','',1),(410,1,'2019-10-01 16:18:21','2019-10-01 23:18:21','','Order &ndash; October 1, 2019 @ 04:18 PM','','wc-processing','open','closed','wc_order_SjtvUjqfw9KXW','order-oct-01-2019-1118-pm','','','2019-10-01 16:20:55','2019-10-01 23:20:55','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=410',0,'shop_order','',2),(413,1,'2019-10-17 06:28:32','2019-10-17 13:28:32','','Order &ndash; October 17, 2019 @ 06:28 AM','','wc-processing','open','closed','wc_order_zrHlFZOLCovIF','order-oct-17-2019-0128-pm','','','2019-10-17 06:30:46','2019-10-17 13:30:46','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=413',0,'shop_order','',2),(408,1,'2019-09-13 10:07:00','2019-09-13 17:07:00','','Caitlin','','publish','closed','closed','','caitlin','','','2019-09-13 10:07:00','2019-09-13 17:07:00','',0,'http://remoterangler.com/?post_type=shop_coupon&#038;p=408',0,'shop_coupon','',0),(409,1,'2019-09-22 13:07:21','2019-09-22 20:07:21','','Order &ndash; September 22, 2019 @ 01:07 PM','Hi , Paul Klimasewiski, Here is the order! Thank you','wc-processing','open','closed','wc_order_iyHp4U0Fvp6qU','order-sep-22-2019-0807-pm','','','2019-09-22 13:09:54','2019-09-22 20:09:54','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=409',0,'shop_order','',2),(411,1,'2019-10-02 11:04:02','2019-10-02 18:04:02','','Order &ndash; October 2, 2019 @ 11:04 AM','','wc-processing','open','closed','wc_order_mvOummyNMrgbF','order-oct-02-2019-0604-pm','','','2019-10-02 11:04:05','2019-10-02 18:04:05','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=411',0,'shop_order','',2),(412,1,'2019-10-11 08:14:13','2019-10-11 15:14:13','','Order &ndash; October 11, 2019 @ 08:14 AM','','wc-processing','open','closed','wc_order_jyRyvaUhwqKiN','order-oct-11-2019-0314-pm','','','2019-10-11 08:14:16','2019-10-11 15:14:16','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=412',0,'shop_order','',2),(414,1,'2019-11-04 09:18:42','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2019-11-04 09:18:42','0000-00-00 00:00:00','',0,'http://remoterangler.com/?p=414',0,'post','',0),(415,1,'2019-11-04 09:24:37','2019-11-04 17:24:37','','B','','inherit','closed','closed','','172-autosave-v1','','','2019-11-04 09:24:37','2019-11-04 17:24:37','',172,'http://remoterangler.com/2019/11/04/172-autosave-v1/',0,'revision','',0),(416,1,'2019-11-04 12:31:19','2019-11-04 20:31:19','','Amazon screenshot','','inherit','open','closed','','amazon-screenshot','','','2019-11-04 12:31:19','2019-11-04 20:31:19','',234,'http://remoterangler.com/wp-content/uploads/2019/11/Amazon-screenshot.jpg',0,'attachment','image/jpeg',0),(417,1,'2019-11-04 12:37:53','2019-11-04 20:37:53','','Screenshot_20191104-123535_Chrome','Click The Picture to see it on Amazon','inherit','open','closed','','screenshot_20191104-123535_chrome','','','2019-11-04 12:50:38','2019-11-04 20:50:38','',234,'http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg',0,'attachment','image/jpeg',0),(418,1,'2019-11-04 12:39:02','2019-11-04 20:39:02','<!-- wp:fl-builder/layout -->\n	<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a></p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\" alt=\"Screenshot_20191104-123535_Chrome\" itemprop=\"image\" height=\"2464\" width=\"1440\" title=\"Screenshot_20191104-123535_Chrome\" onerror=\"this.style.display=\'none\'\"  />\n<!-- /wp:fl-builder/layout -->','Remote Rangler Buyer\'s Guide','','inherit','closed','closed','','234-revision-v1','','','2019-11-04 12:39:02','2019-11-04 20:39:02','',234,'http://remoterangler.com/2019/11/04/234-revision-v1/',0,'revision','',0),(419,1,'2019-11-04 12:40:16','2019-11-04 20:40:16','<!-- wp:fl-builder/layout -->\n	<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a></p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-598x1024.jpg\" alt=\"Screenshot_20191104-123535_Chrome\" itemprop=\"image\" height=\"1024\" width=\"598\" title=\"Screenshot_20191104-123535_Chrome\" onerror=\"this.style.display=\'none\'\"  />\n<!-- /wp:fl-builder/layout -->','Remote Rangler Buyer\'s Guide','','inherit','closed','closed','','234-revision-v1','','','2019-11-04 12:40:16','2019-11-04 20:40:16','',234,'http://remoterangler.com/2019/11/04/234-revision-v1/',0,'revision','',0),(420,1,'2019-11-04 12:42:24','2019-11-04 20:42:24','<!-- wp:fl-builder/layout -->\n	<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a></p>\n				<a href=\"https://www.amazon.com/Universal-Portable-Remote-Holders-Rangler/dp/B07CLFDMHN/ref=cm_cr_arp_d_product_top?ie=UTF8\" target=\"_self\" itemprop=\"url\" rel=\"noopener noreferrer\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome-598x1024.jpg\" alt=\"Screenshot_20191104-123535_Chrome\" itemprop=\"image\" height=\"1024\" width=\"598\" title=\"Screenshot_20191104-123535_Chrome\" onerror=\"this.style.display=\'none\'\"  />\n				</a>\n<!-- /wp:fl-builder/layout -->','Remote Rangler Buyer\'s Guide','','inherit','closed','closed','','234-revision-v1','','','2019-11-04 12:42:24','2019-11-04 20:42:24','',234,'http://remoterangler.com/2019/11/04/234-revision-v1/',0,'revision','',0),(423,1,'2019-11-04 13:14:23','2019-11-04 21:14:23','<!-- wp:fl-builder/layout -->\n	<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a></p>\n<!-- /wp:fl-builder/layout -->','Remote Rangler Buyer\'s Guide','','inherit','closed','closed','','234-revision-v1','','','2019-11-04 13:14:23','2019-11-04 21:14:23','',234,'http://remoterangler.com/2019/11/04/234-revision-v1/',0,'revision','',0),(421,1,'2019-11-04 12:52:38','2019-11-04 20:52:38','<!-- wp:fl-builder/layout -->\n	<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a></p>\n				<a href=\"https://www.amazon.com/Universal-Portable-Remote-Holders-Rangler/dp/B07CLFDMHN/ref=cm_cr_arp_d_product_top?ie=UTF8\" target=\"_self\" itemprop=\"url\" rel=\"noopener noreferrer\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2019/11/Screenshot_20191104-123535_Chrome.jpg\" alt=\"Click The Picture to see it on Amazon\" itemprop=\"image\" height=\"2464\" width=\"1440\" title=\"Screenshot_20191104-123535_Chrome\" onerror=\"this.style.display=\'none\'\"  />\n				</a>\n		Click The Picture to see it on Amazon\n<!-- /wp:fl-builder/layout -->','Remote Rangler Buyer\'s Guide','','inherit','closed','closed','','234-revision-v1','','','2019-11-04 12:52:38','2019-11-04 20:52:38','',234,'http://remoterangler.com/2019/11/04/234-revision-v1/',0,'revision','',0),(202,1,'2018-05-07 07:12:27','2018-05-07 07:12:27','','Remote Rangler one page Summary','','inherit','open','closed','','remote-rangler-one-page-summary','','','2018-05-07 07:12:27','2018-05-07 07:12:27','',123,'http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf',0,'attachment','application/pdf',0),(205,1,'2018-05-14 22:56:09','2018-05-14 22:56:09','','How It Works','','publish','closed','closed','','how-it-works','','','2018-05-14 22:56:09','2018-05-14 22:56:09','',0,'http://remoterangler.com/fl-builder-template/how-it-works/',0,'fl-builder-template','',0),(207,1,'2018-05-14 23:07:26','2018-05-14 23:07:26','<h1>\n		End The Search For The Remotes!\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"?autoplay=1; encrypted-media\" allowfullscreen></iframe>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\" title=\"20180308_200016\"  />\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\" title=\"20180405_230244\"  />\n	<h2>Universal - Fits All Remotes</h2>\n<p>Elastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\" title=\"20180405_220150\"  />\n	<h2>Keeps Your Batteries Covered</h2>\n<p>Did the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\" alt=\"20180430_015733\" itemprop=\"image\" height=\"1024\" width=\"572\" title=\"20180430_015733\"  />\n	<h2>Hang Them Up Anywhere!</h2>\n<p>Find them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.</p>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-05-14 23:07:26','2018-05-14 23:07:26','',2,'http://remoterangler.com/2018/05/14/2-revision-v1/',0,'revision','',0),(209,1,'2018-05-15 00:42:39','2018-05-15 00:42:39','<h1>\n		End The Search For The Remotes!\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/G-aqHkBC2-o?autoplay=1\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\" title=\"20180308_200016\"  />\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\" title=\"20180405_230244\"  />\n	<h2>Universal - Fits All Remotes</h2>\n<p>Elastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\" title=\"20180405_220150\"  />\n	<h2>Keeps Your Batteries Covered</h2>\n<p>Did the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\" alt=\"20180430_015733\" itemprop=\"image\" height=\"1024\" width=\"572\" title=\"20180430_015733\"  />\n	<h2>Hang Them Up Anywhere!</h2>\n<p>Find them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.</p>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-05-15 00:42:39','2018-05-15 00:42:39','',2,'http://remoterangler.com/2018/05/15/2-revision-v1/',0,'revision','',0),(208,1,'2018-05-15 00:36:48','2018-05-15 00:36:48','<h1>\n		End The Search For The Remotes!\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0?autoplay=1\" frameborder=\"0\" allow=\"?autoplay=1; encrypted-media\" allowfullscreen></iframe>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\" title=\"20180308_200016\"  />\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\" title=\"20180405_230244\"  />\n	<h2>Universal - Fits All Remotes</h2>\n<p>Elastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"2674\" width=\"2452\" title=\"20180405_220150\"  />\n	<h2>Keeps Your Batteries Covered</h2>\n<p>Did the cover for your batteries break? 2 birds 1 stone, the Remote Rangler has you covered! Pun intended.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180430_015733-572x1024.jpg\" alt=\"20180430_015733\" itemprop=\"image\" height=\"1024\" width=\"572\" title=\"20180430_015733\"  />\n	<h2>Hang Them Up Anywhere!</h2>\n<p>Find them easier by hanging them on the wall or headboard in your room. Keep them close by and your tables clutter free.</p>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n','How It Works','','inherit','closed','closed','','2-revision-v1','','','2018-05-15 00:36:48','2018-05-15 00:36:48','',2,'http://remoterangler.com/2018/05/15/2-revision-v1/',0,'revision','',0),(210,1,'2018-05-15 17:26:24','2018-05-15 17:26:24','','Remote Rangler Logo White background','','inherit','open','closed','','remote-rangler-logo-white-background','','','2018-05-15 17:26:24','2018-05-15 17:26:24','',0,'http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-Logo-White-background.jpg',0,'attachment','image/jpeg',0),(211,1,'2018-05-15 17:26:57','2018-05-15 17:26:57','http://remoterangler.com/wp-content/uploads/2018/05/cropped-Remote-Rangler-Logo-White-background.jpg','cropped-Remote-Rangler-Logo-White-background.jpg','','inherit','open','closed','','cropped-remote-rangler-logo-white-background-jpg','','','2018-05-15 17:26:57','2018-05-15 17:26:57','',0,'http://remoterangler.com/wp-content/uploads/2018/05/cropped-Remote-Rangler-Logo-White-background.jpg',0,'attachment','image/jpeg',0),(237,1,'2018-06-19 17:58:55','2018-06-19 17:58:55','<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a>\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Remote Rangler Buyer one page summary</a>','Remote Rangler One Page Summary','','inherit','closed','closed','','234-revision-v1','','','2018-06-19 17:58:55','2018-06-19 17:58:55','',234,'http://remoterangler.com/2018/06/19/234-revision-v1/',0,'revision','',0),(235,1,'2018-06-19 17:48:57','2018-06-19 17:48:57','','Remote Rangler Buyer one page summary','','inherit','open','closed','','remote-rangler-buyer-one-page-summary','','','2018-06-19 17:48:57','2018-06-19 17:48:57','',234,'http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf',0,'attachment','application/pdf',0),(236,1,'2018-06-19 17:50:07','2018-06-19 17:50:07','<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Remote Rangler Buyer one page summary</a>','Remote Rangler One Page Summary','','inherit','closed','closed','','234-revision-v1','','','2018-06-19 17:50:07','2018-06-19 17:50:07','',234,'http://remoterangler.com/2018/06/19/234-revision-v1/',0,'revision','',0),(220,1,'2018-06-09 20:37:36','2018-06-09 20:37:36','&nbsp;\r\n\r\n1. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Luxury-the-Life.wma\">Luxury the Life</a>\r\n\r\n2. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Smilen.wma\">Smilen</a>\r\n\r\n3. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/DO-IT.wma\">DO IT!</a>\r\n\r\n4. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Itchy-Palms.wma\">Itchy Palms</a>\r\n\r\n5. <a href=\"http://remoterangler.com/wp-content/uploads/2018/06/No-one-as-hard-as-us.wma\">No one as hard as us</a>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Success-Vibes.zip\">Click here to download Album - Success Vibes</a>\r\n\r\n&nbsp;\r\n\r\n[embed]https://youtu.be/crJy2dynj-Y[/embed]','Benny Bonez - Success Vibes','','publish','closed','closed','','successvibes','','','2018-06-09 21:45:22','2018-06-09 21:45:22','',0,'http://remoterangler.com/?page_id=220',0,'page','',0),(217,1,'2018-05-21 22:09:59','2018-05-21 22:09:59','','Order &ndash; May 21, 2018 @ 10:09 PM','','wc-completed','open','closed','order_5b0343b7e29d1','order-may-21-2018-1009-pm','','','2018-06-09 20:23:51','2018-06-09 20:23:51','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=217',0,'shop_order','',2),(216,1,'2018-05-21 18:04:02','2018-05-21 18:04:02','','replace','','publish','closed','closed','','replace','','','2018-05-21 18:06:13','2018-05-21 18:06:13','',0,'http://remoterangler.com/?post_type=shop_coupon&#038;p=216',0,'shop_coupon','',0),(234,1,'2018-06-19 17:50:07','2018-06-19 17:50:07','<!-- wp:fl-builder/layout -->\n	<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">[pdf-embedder url=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\" title=\"Remote Rangler Buyer one page summary\"]</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf\">Click Here to Download Buyers Guide</a></p>\n<!-- /wp:fl-builder/layout -->','Remote Rangler Buyer\'s Guide','','publish','closed','closed','','buyersguide','','','2019-11-04 13:14:23','2019-11-04 21:14:23','',0,'http://remoterangler.com/?page_id=234',0,'page','',0),(261,1,'2018-11-05 21:46:09','2018-11-05 21:46:09','','Order &ndash; November 5, 2018 @ 09:46 PM','','wc-failed','open','closed','order_5be0ba216f5f3','order-nov-05-2018-0946-pm','','','2018-11-05 21:46:11','2018-11-05 21:46:11','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=261',0,'shop_order','',1),(263,1,'2018-11-13 13:06:18','2018-11-13 13:06:18','','Order &ndash; November 13, 2018 @ 01:06 PM','','wc-failed','open','closed','order_5beacc4a04511','order-nov-13-2018-0106-pm','','','2018-11-13 13:06:18','2018-11-13 13:06:18','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=263',0,'shop_order','',1),(276,1,'2018-12-23 06:58:22','2018-12-23 06:58:22','','Order &ndash; December 23, 2018 @ 06:58 AM','','wc-cancelled','open','closed','order_5c1f320e086e7','order-dec-23-2018-0658-am','','','2018-12-23 09:08:39','2018-12-23 09:08:39','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=276',0,'shop_order','',1),(277,1,'2018-12-26 23:58:07','2018-12-26 23:58:07','','Order &ndash; December 26, 2018 @ 11:58 PM','','wc-processing','open','closed','order_5c24158f64f29','order-dec-26-2018-1158-pm','','','2018-12-27 01:05:52','2018-12-27 01:05:52','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=277',0,'shop_order','',2),(278,1,'2018-12-27 01:20:03','2018-12-27 01:20:03','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\" title=\"20180308_203557\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">Read More</a>		\n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1024\" width=\"632\" title=\"20180309_010105\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		\n				<a href=\"http://remoterangler.com/products/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"1024\" width=\"939\" title=\"20180405_220150\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/products/\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">Read More</a>		\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\" title=\"secure_checkout_now_large_large\"  />\n<h3>\n		CONNECT WITH US\n	</h3>\n<h1>\n		How It Works\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\" title=\"20180308_200016\"  />\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the remote controller like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\" title=\"20180405_230244\"  />\n	<h2>Universal - Fits All Remotes</h2>\n<p>Elastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!</p>\n[product_page id=\"\"]','','','inherit','closed','closed','','27-revision-v1','','','2018-12-27 01:20:03','2018-12-27 01:20:03','',27,'http://remoterangler.com/2018/12/27/27-revision-v1/',0,'revision','',0),(279,1,'2018-12-27 01:21:46','2018-12-27 01:21:46','<h2>\n		Tired Of Losing The Remotes? Now There\'s Hope!\n	</h2>\n			<a href=\"http://remoterangler.com/products/\" target=\"_self\" role=\"button\">\n						Buy Now!\n					</a>\n				<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_203557-547x1024.jpg\" alt=\"20180308_203557\" itemprop=\"image\" height=\"1024\" width=\"547\" title=\"20180308_203557\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">How It Works</a></h3>		\n			<p>Stop Losing the Remotes! Watch these videos to see How it Works, Why it Works, and Why you Need IT.</p>\n<a href=\"http://remoterangler.com/howitworks/\" target=\"_self\">Read More</a>		\n				<a href=\"http://remoterangler.com/about\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180309_010105-632x1024.jpg\" alt=\"20180309_010105\" itemprop=\"image\" height=\"1024\" width=\"632\" title=\"20180309_010105\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/about\" target=\"_self\">About Us</a></h3>		\n			<p>Meet the inventor and his team. A product created out of necessity. The Journey to get the Remote Rangler into the market and the future of the company.</p>\n<a href=\"http://remoterangler.com/about\" target=\"_self\">Read More</a>		\n				<a href=\"http://remoterangler.com/products/\" target=\"_self\" itemprop=\"url\">\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_220150-939x1024.jpg\" alt=\"20180405_220150\" itemprop=\"image\" height=\"1024\" width=\"939\" title=\"20180405_220150\"  />\n				</a>\n<h3><a href=\"http://remoterangler.com/products/\" target=\"_self\">Products</a></h3>		\n			<p>Remote Rangler products. Take a look at our options and get one for every remote in your house and never worry about losing your remotes again! Peace of Mind Restored.</p>\n<a href=\"http://remoterangler.com/products/\" target=\"_self\">Read More</a>		\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/secure_checkout_now_large_large.png\" alt=\"secure_checkout_now_large_large\" itemprop=\"image\" height=\"324\" width=\"480\" title=\"secure_checkout_now_large_large\"  />\n<h3>\n		CONNECT WITH US\n	</h3>\n<h1>\n		How It Works\n	</h1>\n	<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/fSFGZD72PwA?rel=0\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180308_200016-e1524609034633.jpg\" alt=\"20180308_200016\" itemprop=\"image\" height=\"1544\" width=\"2000\" title=\"20180308_200016\"  />\n	<h2>Attach Them all</h2>\n<p>This portable remote control caddy is one of a kind. Attach all your remotes to the Remote Rangler like a key ring so you can keep them alltogther in one place.</p>\n				<img src=\"http://remoterangler.com/wp-content/uploads/2018/04/20180405_230244-e1524797515525.jpg\" alt=\"20180405_230244\" itemprop=\"image\" height=\"2964\" width=\"3015\" title=\"20180405_230244\"  />\n	<h2>Universal - Fits All Remotes</h2>\n<p>Elastic stretches to fit all the many remotes you have to keep track of. Buy with confidence. SATISFACTION GUARANTEED!</p>\n[product_page id=\"\"]','','','inherit','closed','closed','','27-revision-v1','','','2018-12-27 01:21:46','2018-12-27 01:21:46','',27,'http://remoterangler.com/2018/12/27/27-revision-v1/',0,'revision','',0),(281,1,'2019-01-01 02:02:10','2019-01-01 02:02:10','','Order &ndash; January 1, 2019 @ 02:02 AM','','wc-processing','open','closed','order_5c2aca223a4b4','order-jan-01-2019-0202-am','','','2019-01-01 02:04:39','2019-01-01 02:04:39','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=281',0,'shop_order','',2),(401,1,'2019-07-07 11:24:04','2019-07-07 18:24:04','','Order &ndash; July 7, 2019 @ 11:24 AM','','wc-processing','open','closed','wc_order_3Ef5iLtWBOulk','order-jul-07-2019-0624-pm','','','2019-07-07 11:25:35','2019-07-07 18:25:35','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=401',0,'shop_order','',2),(305,0,'2019-11-04 16:09:04','2019-11-05 00:09:04','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay03LjQuMSctLT4KPD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0iLy9yZW1vdGVyYW5nbGVyLmNvbS9zaXRlbWFwLWluZGV4LnhzbCI/Pgo8c2l0ZW1hcGluZGV4IHhtbG5zPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45Ij48c2l0ZW1hcD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9zaXRlbWFwLTEueG1sPC9sb2M+PGxhc3Rtb2Q+MjAxOS0xMS0wNFQyMDo1NjowM1o8L2xhc3Rtb2Q+PC9zaXRlbWFwPjxzaXRlbWFwPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2ltYWdlLXNpdGVtYXAtMS54bWw8L2xvYz48bGFzdG1vZD4yMDE5LTExLTA0VDIwOjUwOjM4WjwvbGFzdG1vZD48L3NpdGVtYXA+PC9zaXRlbWFwaW5kZXg+Cg==','sitemap.xml','','trash','closed','closed','','__trashed','','','2019-11-04 16:09:04','2019-11-05 00:09:04','',0,'http://remoterangler.com/?p=305',0,'jp_sitemap_master','',0),(424,0,'2019-11-04 21:14:23','0000-00-00 00:00:00','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay03LjgnLS0+Cjw/eG1sLXN0eWxlc2hlZXQgdHlwZT0idGV4dC94c2wiIGhyZWY9Ii8vcmVtb3RlcmFuZ2xlci5jb20vc2l0ZW1hcC54c2wiPz4KPHVybHNldCB4bWxucz0iaHR0cDovL3d3dy5zaXRlbWFwcy5vcmcvc2NoZW1hcy9zaXRlbWFwLzAuOSIgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45IGh0dHA6Ly93d3cuc2l0ZW1hcHMub3JnL3NjaGVtYXMvc2l0ZW1hcC8wLjkvc2l0ZW1hcC54c2QiPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vMjAxOC8wMi8wMi9oZWxsby13b3JsZC88L2xvYz48bGFzdG1vZD4yMDE4LTAyLTAyVDA0OjI0OjIxWjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2hvd2l0d29ya3MvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNS0xNVQwMDo0MjozOVo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS88L2xvYz48bGFzdG1vZD4yMDE4LTEyLTI3VDAxOjIxOjQ2WjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2Fib3V0LzwvbG9jPjxsYXN0bW9kPjIwMTgtMDUtMDFUMDc6MzY6MzZaPC9sYXN0bW9kPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vY29udGFjdC88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI3VDA4OjE2OjQ5WjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2Jsb2cvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0wM1QyMjoxNjoxMVo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9wcm9kdWN0cy88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI2VDEwOjU5OjI1WjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2NhcnQvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yNlQxMDo0OTowMVo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9jaGVja291dC88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI2VDA5OjAxOjM0WjwvbGFzdG1vZD48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL215LWFjY291bnQvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yNlQxMDowNDoyNVo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9waXRjaGRlY2svPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNi0xOVQxOTozOToyNFo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9zdWNjZXNzdmliZXMvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNi0wOVQyMTo0NToyMlo8L2xhc3Rtb2Q+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9idXllcnNndWlkZS88L2xvYz48bGFzdG1vZD4yMDE5LTExLTA0VDIxOjE0OjIzWjwvbGFzdG1vZD48L3VybD48L3VybHNldD4K','sitemap-1.xml','','draft','closed','closed','','','','','2019-11-04 21:14:23','0000-00-00 00:00:00','',0,'http://remoterangler.com/?p=424',0,'jp_sitemap','',0),(426,0,'1970-01-01 00:00:00','0000-00-00 00:00:00','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay03LjgnLS0+Cjw/eG1sLXN0eWxlc2hlZXQgdHlwZT0idGV4dC94c2wiIGhyZWY9Ii8vcmVtb3RlcmFuZ2xlci5jb20vc2l0ZW1hcC1pbmRleC54c2wiPz4KPHNpdGVtYXBpbmRleCB4bWxucz0iaHR0cDovL3d3dy5zaXRlbWFwcy5vcmcvc2NoZW1hcy9zaXRlbWFwLzAuOSI+PHNpdGVtYXA+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vc2l0ZW1hcC0xLnhtbDwvbG9jPjxsYXN0bW9kPjIwMTktMTEtMDRUMjE6MTQ6MjNaPC9sYXN0bW9kPjwvc2l0ZW1hcD48c2l0ZW1hcD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9pbWFnZS1zaXRlbWFwLTEueG1sPC9sb2M+PGxhc3Rtb2Q+MjAxOS0xMS0wNFQyMDo1MDozOFo8L2xhc3Rtb2Q+PC9zaXRlbWFwPjwvc2l0ZW1hcGluZGV4Pgo=','sitemap.xml','','draft','closed','closed','','','','','1970-01-01 00:00:00','0000-00-00 00:00:00','',0,'http://remoterangler.com/?p=426',0,'jp_sitemap_master','',0),(427,0,'2019-11-04 16:20:56','2019-11-05 00:20:56','{\"update_callback\":\"wc_update_370_tax_rate_classes\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5dc0c0aa777d62.37930510-kcq0VdEZVFuEfP0N544bPF0oCBYroyYC','','','2019-11-04 16:22:02','2019-11-05 00:22:02','',0,'http://remoterangler.com/?post_type=scheduled-action&#038;p=427',0,'scheduled-action','',3),(428,0,'2019-11-04 16:20:57','2019-11-05 00:20:57','{\"update_callback\":\"wc_update_370_mro_std_currency\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5dc0c0aa8c17e9.02371949-RCJwyWGT1ZzdLUkD8AKNjP7rLHPFlI20','','','2019-11-04 16:22:02','2019-11-05 00:22:02','',0,'http://remoterangler.com/?post_type=scheduled-action&#038;p=428',0,'scheduled-action','',3),(429,0,'2019-11-04 16:20:58','2019-11-05 00:20:58','{\"update_callback\":\"wc_update_370_db_version\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5dc0c0aa978953.57846076-e7s577lPU35AW90cSUsE9puaYsskrRQy','','','2019-11-04 16:22:02','2019-11-05 00:22:02','',0,'http://remoterangler.com/?post_type=scheduled-action&#038;p=429',0,'scheduled-action','',3),(430,0,'2019-11-04 16:21:36','2019-11-05 00:21:36','[]','woocommerce_update_marketplace_suggestions','','publish','open','closed','','scheduled-action-5dc0c0aab3cc03.73221567-yDXr8o8PN9nAORepjnrfzV9hmsmSwtFw','','','2019-11-04 16:22:02','2019-11-05 00:22:02','',0,'http://remoterangler.com/?post_type=scheduled-action&#038;p=430',0,'scheduled-action','',3),(425,0,'2019-11-04 20:50:38','0000-00-00 00:00:00','PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLWdlbmVyYXRvcj0namV0cGFjay03LjgnLS0+Cjw/eG1sLXN0eWxlc2hlZXQgdHlwZT0idGV4dC94c2wiIGhyZWY9Ii8vcmVtb3RlcmFuZ2xlci5jb20vaW1hZ2Utc2l0ZW1hcC54c2wiPz4KPHVybHNldCB4bWxucz0iaHR0cDovL3d3dy5zaXRlbWFwcy5vcmcvc2NoZW1hcy9zaXRlbWFwLzAuOSIgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeHNpOnNjaGVtYUxvY2F0aW9uPSJodHRwOi8vd3d3LnNpdGVtYXBzLm9yZy9zY2hlbWFzL3NpdGVtYXAvMC45IGh0dHA6Ly93d3cuc2l0ZW1hcHMub3JnL3NjaGVtYXMvc2l0ZW1hcC8wLjkvc2l0ZW1hcC54c2QiIHhtbG5zOmltYWdlPSJodHRwOi8vd3d3Lmdvb2dsZS5jb20vc2NoZW1hcy9zaXRlbWFwLWltYWdlLzEuMSI+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9lc3ByZXNzby88L2xvYz48bGFzdG1vZD4yMDE4LTAyLTAzVDIyOjE2OjExWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvZXNwcmVzc28tMi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+RXNwcmVzc288L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vc2FuZHdpY2gvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wMi0wM1QyMjoxNjoxMVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzAyL3NhbmR3aWNoLTIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlNhbmR3aWNoPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2NvZmZlZS88L2xvYz48bGFzdG1vZD4yMDE4LTAyLTAzVDIyOjE2OjExWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDIvY29mZmVlLTIuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkNvZmZlZTwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI0VDIyOjMyOjAwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODAzMDhfMjAwMDE2LWUxNTI0NjA5MDM0NjMzLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDMwOF8yMDAwMTY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yNFQyMjozMzoyNVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwMzA4XzIwMTExNi1lMTUyNDc2NzU4MDk5Mi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODAzMDhfMjAxMTE2PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjZUMDY6NDA6MjNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC8yMDE4MDMwOF8yMDM1NTcuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjIwMTgwMzA4XzIwMzU1NzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI2VDA2OjQ0OjE5WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvc2VjdXJlLXBheXBhbC1wYXltZW50cy5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+c2VjdXJlLXBheXBhbC1wYXltZW50czwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI2VDA2OjU0OjQyWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODAzMDlfMDEwMTA1LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDMwOV8wMTAxMDU8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vMjAxODAzMDlfMDEwNTM2LzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjZUMDc6MDY6MDJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC8yMDE4MDMwOV8wMTA1MzYuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjIwMTgwMzA5XzAxMDUzNjwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS8yMDE4MDQwNV8yMzAyNDQvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yN1QwMjo1NDo1Nlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwNDA1XzIzMDI0NC1lMTUyNDc5NzUxNTUyNS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODA0MDVfMjMwMjQ0PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3Byb2R1Y3QvcmVtb3RlLXJhbmdsZXItNC1ob2xkZXJzLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjdUMDc6NDg6MTdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC8yMDE4MDMwOF8yMDI4MzMuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjIwMTgwMzA4XzIwMjgzMzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI3VDA5OjAxOjAzWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODA0MDVfMjIwMTUwLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDQwNV8yMjAxNTA8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vYWJvdXQvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yNlQwNzo0MTo0Nlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwNDI2XzAwMzkxNS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODA0MjZfMDAzOTE1PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjZUMTA6NDQ6MzBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC9zZWN1cmVfY2hlY2tvdXRfbm93X2xhcmdlX2xhcmdlLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5zZWN1cmVfY2hlY2tvdXRfbm93X2xhcmdlX2xhcmdlPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2hvd2l0d29ya3MvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yN1QwMjo1NToyMlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0L0FsbC10aGUtcmVtb3Rlcy5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+QWxsIHRoZSByZW1vdGVzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2hvd2l0d29ya3MvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yN1QwMjo1ODowMFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0L0FsbC10aGUtcmVtb3Rlcy0xLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5BbGwgdGhlIHJlbW90ZXM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vaG93aXR3b3Jrcy88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI3VDAyOjU5OjI2WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvQWxsLXRoZS1yZW1vdGVzLTIucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPkFsbCB0aGUgcmVtb3RlczwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9ob3dpdHdvcmtzLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjdUMDM6MDE6MzBaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC9BbGwtdGhlLXJlbW90ZXMtMy5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+QWxsIHRoZSByZW1vdGVzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2hvd2l0d29ya3MvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yN1QwMzowMzozNlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwMzA4XzIwMzkxNi5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODAzMDhfMjAzOTE2PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2hvd2l0d29ya3MvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yN1QwMzowNDo0MVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwNDE3XzEyNDAxMC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODA0MTdfMTI0MDEwPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2hvd2l0d29ya3MvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yN1QwMzowNzozMVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0L0Jhci1SZW1vdGVzLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5CYXIgUmVtb3RlczwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI3VDA4OjI1OjIwWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvZmFjZWJvb2stc2hhcmUuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPmZhY2Vib29rIHNoYXJlPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3JyLWxvZ28vPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yN1QwODozMDo0NFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0L1JSLUxvZ28uanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPlJSIExvZ288L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vY3JvcHBlZC1yci1sb2dvLWpwZy88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTI3VDA4OjMxOjAzWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvY3JvcHBlZC1SUi1Mb2dvLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5jcm9wcGVkLVJSLUxvZ28uanBnPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2VuZXJneS1oZWFsaW5nLXNtYWxsLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjlUMDI6NDk6NTZaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC9FbmVyZ3ktSGVhbGluZy1zbWFsbC5wbmc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+RW5lcmd5IEhlYWxpbmcgc21hbGw8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vYW1lcmljYW4tZmxhZy1ydXN0aWMvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0yOVQwMjo1NjowNlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0L0FtZXJpY2FuLUZsYWctUnVzdGljLnBuZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5BbWVyaWNhbiBGbGFnIFJ1c3RpYzwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS9ibHVlLWNsb3Vkcy1ia2dkLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMjlUMDM6MTc6MzFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC9CbHVlLUNsb3Vkcy1Ca2dkLmpwZWc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Qmx1ZSBDbG91ZHMgQmtnZDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS88L2xvYz48bGFzdG1vZD4yMDE4LTA0LTMwVDA5OjI5OjQ1WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDQvMjAxODA0MjlfMDIzMjEzLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDQyOV8wMjMyMTM8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0zMFQwOTozNDowMVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwNDI5XzAyMzc0Ni5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODA0MjlfMDIzNzQ2PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMzBUMDk6Mzc6MjNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC8yMDE4MDQyOV8wMjI4MDQuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjIwMTgwNDI5XzAyMjgwNDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS8yMDE4MDQzMF8wMTQ2MDgvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0zMFQwOTo0MTo0MVo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwNDMwXzAxNDYwOC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODA0MzBfMDE0NjA4PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2hvd2l0d29ya3MvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0zMFQwOTo0NDo0N1o8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwNDMwXzAxNTczMy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODA0MzBfMDE1NzMzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2Fib3V0LzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMzBUMDk6NDY6NDJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC9TY3JlZW5zaG90XzIwMTgwNDI5LTAyMTEyNy5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U2NyZWVuc2hvdF8yMDE4MDQyOS0wMjExMjc8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vcHJvZHVjdC9yZW1vdGUtcmFuZ2xlci02LWhvbGRlcnMvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNC0zMFQwOTo1MjoyNFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA0LzIwMTgwNDI5XzExNTkwMS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODA0MjlfMTE1OTAxPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3Byb2R1Y3QvcmVtb3RlLXJhbmdsZXItMy1ob2xkZXJzLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDQtMzBUMDk6NTU6MTFaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNC8yMDE4MDQyOV8wMjMyMTMtMS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODA0MjlfMDIzMjEzPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDUtMDFUMDg6MTA6NTNaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNS8yMDE4MDQzMF8yMzE0MDAuanBnPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPjIwMTgwNDMwXzIzMTQwMDwvaW1hZ2U6dGl0bGU+PGltYWdlOmNhcHRpb24+PC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PHVybD48bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS8yMDE4MDMwOV8wMTA1MzYtMi88L2xvYz48bGFzdG1vZD4yMDE4LTA1LTAxVDA4OjE1OjMxWjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDUvMjAxODAzMDlfMDEwNTM2LmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT4yMDE4MDMwOV8wMTA1MzY8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vMjAxODA0MDVfMjMwMjQ0LTIvPC9sb2M+PGxhc3Rtb2Q+MjAxOC0wNS0wMVQwODoxNzo0Mlo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE4LzA1LzIwMTgwNDA1XzIzMDI0NC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+MjAxODA0MDVfMjMwMjQ0PC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3JlbW90ZS1yYW5nbGVyLWxvZ28td2hpdGUtYmFja2dyb3VuZC88L2xvYz48bGFzdG1vZD4yMDE4LTA1LTE1VDE3OjI2OjI0WjwvbGFzdG1vZD48aW1hZ2U6aW1hZ2U+PGltYWdlOmxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vd3AtY29udGVudC91cGxvYWRzLzIwMTgvMDUvUmVtb3RlLVJhbmdsZXItTG9nby1XaGl0ZS1iYWNrZ3JvdW5kLmpwZzwvaW1hZ2U6bG9jPjxpbWFnZTp0aXRsZT5SZW1vdGUgUmFuZ2xlciBMb2dvIFdoaXRlIGJhY2tncm91bmQ8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vY3JvcHBlZC1yZW1vdGUtcmFuZ2xlci1sb2dvLXdoaXRlLWJhY2tncm91bmQtanBnLzwvbG9jPjxsYXN0bW9kPjIwMTgtMDUtMTVUMTc6MjY6NTdaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOC8wNS9jcm9wcGVkLVJlbW90ZS1SYW5nbGVyLUxvZ28tV2hpdGUtYmFja2dyb3VuZC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+Y3JvcHBlZC1SZW1vdGUtUmFuZ2xlci1Mb2dvLVdoaXRlLWJhY2tncm91bmQuanBnPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dvb2NvbW1lcmNlLXBsYWNlaG9sZGVyLzwvbG9jPjxsYXN0bW9kPjIwMTktMDYtMjlUMTk6MTc6NTJaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvd29vY29tbWVyY2UtcGxhY2Vob2xkZXIucG5nPC9pbWFnZTpsb2M+PGltYWdlOnRpdGxlPndvb2NvbW1lcmNlLXBsYWNlaG9sZGVyPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmNhcHRpb24+PC9pbWFnZTppbWFnZT48L3VybD48dXJsPjxsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL2J1eWVyc2d1aWRlLzwvbG9jPjxsYXN0bW9kPjIwMTktMTEtMDRUMjA6MzE6MTlaPC9sYXN0bW9kPjxpbWFnZTppbWFnZT48aW1hZ2U6bG9jPmh0dHA6Ly9yZW1vdGVyYW5nbGVyLmNvbS93cC1jb250ZW50L3VwbG9hZHMvMjAxOS8xMS9BbWF6b24tc2NyZWVuc2hvdC5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+QW1hem9uIHNjcmVlbnNob3Q8L2ltYWdlOnRpdGxlPjxpbWFnZTpjYXB0aW9uPjwvaW1hZ2U6Y2FwdGlvbj48L2ltYWdlOmltYWdlPjwvdXJsPjx1cmw+PGxvYz5odHRwOi8vcmVtb3RlcmFuZ2xlci5jb20vYnV5ZXJzZ3VpZGUvPC9sb2M+PGxhc3Rtb2Q+MjAxOS0xMS0wNFQyMDo1MDozOFo8L2xhc3Rtb2Q+PGltYWdlOmltYWdlPjxpbWFnZTpsb2M+aHR0cDovL3JlbW90ZXJhbmdsZXIuY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDE5LzExL1NjcmVlbnNob3RfMjAxOTExMDQtMTIzNTM1X0Nocm9tZS5qcGc8L2ltYWdlOmxvYz48aW1hZ2U6dGl0bGU+U2NyZWVuc2hvdF8yMDE5MTEwNC0xMjM1MzVfQ2hyb21lPC9pbWFnZTp0aXRsZT48aW1hZ2U6Y2FwdGlvbj5DbGljayBUaGUgUGljdHVyZSB0byBzZWUgaXQgb24gQW1hem9uPC9pbWFnZTpjYXB0aW9uPjwvaW1hZ2U6aW1hZ2U+PC91cmw+PC91cmxzZXQ+Cg==','image-sitemap-1.xml','','draft','closed','closed','','','','','2019-11-04 20:50:38','0000-00-00 00:00:00','',0,'http://remoterangler.com/?p=425',0,'jp_img_sitemap','',0),(400,1,'2019-07-03 11:05:25','2019-07-03 18:05:25','','Order &ndash; July 3, 2019 @ 11:05 AM','','wc-processing','open','closed','wc_order_GC5V6ol57bHON','order-jul-03-2019-0605-pm','','','2019-07-03 11:06:41','2019-07-03 18:06:41','',0,'http://remoterangler.com/?post_type=shop_order&#038;p=400',0,'shop_order','',2);
/*!40000 ALTER TABLE `wprl_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_term_relationships`
--

DROP TABLE IF EXISTS `wprl_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_term_relationships`
--

LOCK TABLES `wprl_term_relationships` WRITE;
/*!40000 ALTER TABLE `wprl_term_relationships` DISABLE KEYS */;
INSERT INTO `wprl_term_relationships` VALUES (1,1,0),(183,4,0),(162,21,0),(151,4,0),(109,19,0),(108,19,0),(107,19,0),(106,19,0),(105,19,0),(151,18,0),(89,4,0),(89,18,0),(95,4,0),(95,18,0),(110,19,0),(183,18,0),(205,21,0),(89,16,0),(427,22,0),(428,22,0),(429,22,0),(183,16,0);
/*!40000 ALTER TABLE `wprl_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_term_taxonomy`
--

DROP TABLE IF EXISTS `wprl_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_term_taxonomy`
--

LOCK TABLES `wprl_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wprl_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wprl_term_taxonomy` VALUES (1,1,'category','',0,1),(20,20,'fl-builder-template-type','',0,0),(19,19,'nav_menu','',0,6),(4,4,'product_type','',0,4),(5,5,'product_type','',0,0),(6,6,'product_type','',0,0),(7,7,'product_type','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_visibility','',0,0),(16,16,'product_visibility','',0,2),(17,17,'product_cat','',0,0),(18,18,'product_cat','',0,4),(21,21,'fl-builder-template-type','',0,2),(22,22,'action-group','',0,3),(23,23,'action-group','',0,0);
/*!40000 ALTER TABLE `wprl_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_termmeta`
--

DROP TABLE IF EXISTS `wprl_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_termmeta`
--

LOCK TABLES `wprl_termmeta` WRITE;
/*!40000 ALTER TABLE `wprl_termmeta` DISABLE KEYS */;
INSERT INTO `wprl_termmeta` VALUES (1,17,'product_count_product_cat','0'),(2,18,'order','0'),(3,18,'product_count_product_cat','4');
/*!40000 ALTER TABLE `wprl_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_terms`
--

DROP TABLE IF EXISTS `wprl_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_terms`
--

LOCK TABLES `wprl_terms` WRITE;
/*!40000 ALTER TABLE `wprl_terms` DISABLE KEYS */;
INSERT INTO `wprl_terms` VALUES (1,'Uncategorized','uncategorized',0),(20,'layout','layout',0),(19,'menu menu','menu-menu',0),(4,'simple','simple',0),(5,'grouped','grouped',0),(6,'variable','variable',0),(7,'external','external',0),(8,'exclude-from-search','exclude-from-search',0),(9,'exclude-from-catalog','exclude-from-catalog',0),(10,'featured','featured',0),(11,'outofstock','outofstock',0),(12,'rated-1','rated-1',0),(13,'rated-2','rated-2',0),(14,'rated-3','rated-3',0),(15,'rated-4','rated-4',0),(16,'rated-5','rated-5',0),(17,'Uncategorized','uncategorized',0),(18,'Remote Ranglers','remote-ranglers',0),(21,'row','row',0),(22,'woocommerce-db-updates','woocommerce-db-updates',0),(23,'wc_update_product_lookup_tables','wc_update_product_lookup_tables',0);
/*!40000 ALTER TABLE `wprl_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_usermeta`
--

DROP TABLE IF EXISTS `wprl_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=232 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_usermeta`
--

LOCK TABLES `wprl_usermeta` WRITE;
/*!40000 ALTER TABLE `wprl_usermeta` DISABLE KEYS */;
INSERT INTO `wprl_usermeta` VALUES (1,1,'nickname','Remote Rangler'),(2,1,'first_name','joseph'),(3,1,'last_name','Willett'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wprl_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wprl_user_level','10'),(14,1,'dismissed_wp_pointers','theme_editor_notice,wc_services_labels_metabox,ewd_otp_admin_pointers_tutorial-one,ewd_otp_admin_pointers_tutorial-two,ewd_otp_admin_pointers_tutorial-three,ewd_otp_admin_pointers_tutorial-four,ewd_otp_admin_pointers_tutorial-five,ewd_otp_admin_pointers_tutorial-six,ewd_otp_admin_pointers_tutorial-seven,wp496_privacy'),(15,1,'show_welcome_panel','1'),(20,1,'session_tokens','a:2:{s:64:\"ef33827b5486e782caf17c19642dcd6d1d281e04d3bdadfc91ecbdb1aeb4aeb8\";a:4:{s:10:\"expiration\";i:1573060717;s:2:\"ip\";s:14:\"104.32.124.175\";s:2:\"ua\";s:113:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36\";s:5:\"login\";i:1572887917;}s:64:\"c7381d16778f2c13c01d52200ddb582e5a7b16546f197c67ea3e37ba004a1e42\";a:4:{s:10:\"expiration\";i:1573085245;s:2:\"ip\";s:12:\"23.241.128.7\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36\";s:5:\"login\";i:1572912445;}}'),(79,3,'nickname','momazing'),(80,3,'first_name','Kimberley'),(81,3,'last_name','Aden'),(82,3,'description',''),(83,3,'rich_editing','true'),(84,3,'syntax_highlighting','true'),(17,1,'wprl_dashboard_quick_press_last_post_id','414'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"23.241.128.0\";}'),(19,1,'_fl_builder_launched','1'),(21,1,'wprl_user-settings','libraryContent=browse'),(22,1,'wprl_user-settings-time','1524608986'),(49,2,'wprl_capabilities','a:1:{s:8:\"customer\";b:1;}'),(50,2,'wprl_user_level','0'),(51,2,'_yoast_wpseo_profile_updated','1533209238'),(52,2,'session_tokens','a:1:{s:64:\"cf70a29ada55f209e89da8423f07e3a0fa64c5491b790ef9c560969bf22d6e39\";a:4:{s:10:\"expiration\";i:1534418850;s:2:\"ip\";s:11:\"67.83.21.84\";s:2:\"ua\";s:128:\"Mozilla/5.0 (iPad; CPU OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1533209250;}}'),(23,1,'fl_builder_user_settings','a:3:{s:4:\"skin\";s:5:\"light\";s:8:\"lightbox\";a:4:{s:5:\"width\";s:3:\"380\";s:6:\"height\";s:3:\"500\";s:3:\"top\";s:4:\"67px\";s:4:\"left\";s:6:\"1006px\";}s:6:\"pinned\";a:2:{s:5:\"width\";s:3:\"380\";s:8:\"position\";s:0:\"\";}}'),(24,1,'closedpostboxes_page','a:0:{}'),(25,1,'metaboxhidden_page','a:6:{i:0;s:12:\"revisionsdiv\";i:1;s:10:\"postcustom\";i:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),(210,1,'shipping_method','a:1:{i:0;s:11:\"flat_rate:1\";}'),(28,1,'jetpack_tracks_anon_id','jetpack:2bxHHqaKKuUxw065hVR8v5v3'),(29,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:2:{s:32:\"7647966b7343c29048673252e490f736\";a:10:{s:3:\"key\";s:32:\"7647966b7343c29048673252e490f736\";s:10:\"product_id\";i:89;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:1.6140499999999999847233311811578460037708282470703125;}s:5:\"total\";a:1:{i:1;d:1.6140499999999999847233311811578460037708282470703125;}}s:13:\"line_subtotal\";d:16.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";d:1.6100000000000000976996261670137755572795867919921875;s:10:\"line_total\";d:16.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";d:1.6100000000000000976996261670137755572795867919921875;}s:32:\"cedebb6e872f539bef8c3f919874e9d7\";a:11:{s:3:\"key\";s:32:\"cedebb6e872f539bef8c3f919874e9d7\";s:10:\"product_id\";i:183;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:2.468100000000000182609483090345747768878936767578125;}s:5:\"total\";a:1:{i:1;d:2.468100000000000182609483090345747768878936767578125;}}s:13:\"line_subtotal\";d:25.980000000000000426325641456060111522674560546875;s:17:\"line_subtotal_tax\";d:2.470000000000000195399252334027551114559173583984375;s:10:\"line_total\";d:25.980000000000000426325641456060111522674560546875;s:8:\"line_tax\";d:2.470000000000000195399252334027551114559173583984375;}}}'),(30,1,'closedpostboxes_product','a:1:{i:0;s:14:\"product_catdiv\";}'),(31,1,'metaboxhidden_product','a:2:{i:0;s:10:\"postcustom\";i:1;s:7:\"slugdiv\";}'),(32,1,'nav_menu_recently_edited','3'),(33,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(34,1,'metaboxhidden_nav-menus','a:6:{i:0;s:21:\"add-post-type-product\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:15:\"add-product_cat\";i:4;s:15:\"add-product_tag\";i:5;s:32:\"add-fl-builder-template-category\";}'),(226,2,'wc_last_active','1561766400'),(36,1,'closedpostboxes_shop_order','a:1:{i:0;s:10:\"postcustom\";}'),(37,1,'metaboxhidden_shop_order','a:0:{}'),(78,1,'wc_last_active','1572912000'),(38,2,'nickname','rain4904'),(39,2,'first_name','Lorraine'),(40,2,'last_name','Lopez'),(41,2,'description',''),(42,2,'rich_editing','true'),(43,2,'syntax_highlighting','true'),(44,2,'comment_shortcuts','false'),(45,2,'admin_color','fresh'),(46,2,'use_ssl','0'),(47,2,'show_admin_bar_front','true'),(48,2,'locale',''),(73,2,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(74,2,'googleplus',''),(75,2,'twitter',''),(76,2,'facebook',''),(77,2,'paying_customer','1'),(54,2,'last_update','1533719012'),(55,2,'billing_first_name','Lorraine'),(56,2,'billing_last_name','Lopez'),(57,2,'billing_address_1','4904 Stonehedge Road'),(58,2,'billing_city','Edison'),(59,2,'billing_state','NJ'),(60,2,'billing_postcode','08820'),(61,2,'billing_country','US'),(62,2,'billing_email','rain4904@yahoo.com'),(63,2,'shipping_first_name','Lorraine'),(64,2,'shipping_last_name','Lopez'),(65,2,'shipping_address_1','4904 Stonehedge Road'),(66,2,'shipping_city','Edison'),(67,2,'shipping_state','NJ'),(68,2,'shipping_postcode','08820'),(69,2,'shipping_country','US'),(70,2,'shipping_method','a:1:{i:0;s:11:\"flat_rate:1\";}'),(71,2,'shipping_phone',''),(85,3,'comment_shortcuts','false'),(86,3,'admin_color','fresh'),(87,3,'use_ssl','0'),(88,3,'show_admin_bar_front','true'),(89,3,'locale',''),(90,3,'wprl_capabilities','a:1:{s:8:\"customer\";b:1;}'),(91,3,'wprl_user_level','0'),(92,3,'_yoast_wpseo_profile_updated','1541454357'),(93,3,'session_tokens','a:1:{s:64:\"deee4515962530a159ca43351b7b17f4f6ccc0a18cf1f4ebf3f07415fcc5e80f\";a:4:{s:10:\"expiration\";i:1542663969;s:2:\"ip\";s:12:\"76.122.35.71\";s:2:\"ua\";s:143:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_0_1 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/61.0.217752169 Mobile/16A404 Safari/604.1\";s:5:\"login\";i:1541454369;}}'),(94,3,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"a8f15eda80c50adb0e71943adc8015cf\";a:11:{s:3:\"key\";s:32:\"a8f15eda80c50adb0e71943adc8015cf\";s:10:\"product_id\";i:151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:20.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:20.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;}}}'),(95,3,'last_update','1541454369'),(96,3,'billing_first_name','Kimberley'),(97,3,'billing_last_name','Aden'),(98,3,'billing_address_1','4090 Hodges Blvd'),(99,3,'billing_address_2','Apt 1301'),(100,3,'billing_city','Jacksonville'),(101,3,'billing_state','FL'),(102,3,'billing_postcode','32224'),(103,3,'billing_country','US'),(104,3,'billing_email','momazing@gmail.com'),(105,3,'shipping_first_name','Kimberley'),(106,3,'shipping_last_name','Aden'),(107,3,'shipping_address_1','4090 Hodges Blvd'),(108,3,'shipping_address_2','Apt 1301'),(109,3,'shipping_city','Jacksonville'),(110,3,'shipping_state','FL'),(111,3,'shipping_postcode','32224'),(112,3,'shipping_country','US'),(113,3,'shipping_method','a:1:{i:0;s:11:\"flat_rate:1\";}'),(114,3,'shipping_phone',''),(115,3,'wc_last_active','1541376000'),(116,3,'_stripe_customer_id','cus_Dv659aMonsV2MR'),(117,4,'nickname','jorgemckenzie'),(118,4,'first_name','Jorge'),(119,4,'last_name','Mckenzie'),(120,4,'description',''),(121,4,'rich_editing','true'),(122,4,'syntax_highlighting','true'),(123,4,'comment_shortcuts','false'),(124,4,'admin_color','fresh'),(125,4,'use_ssl','0'),(126,4,'show_admin_bar_front','true'),(127,4,'locale',''),(128,4,'wprl_capabilities','a:1:{s:8:\"customer\";b:1;}'),(129,4,'wprl_user_level','0'),(130,4,'_yoast_wpseo_profile_updated','1542114361'),(131,4,'session_tokens','a:1:{s:64:\"66da0ed4e249bf263cc13b87a49a610f70142398e57234c6d06758cbf423ee62\";a:4:{s:10:\"expiration\";i:1543323977;s:2:\"ip\";s:14:\"72.179.109.119\";s:2:\"ua\";s:140:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/604.1.34 (KHTML, like Gecko) GSA/62.1.220348572 Mobile/16B92 Safari/604.1\";s:5:\"login\";i:1542114377;}}'),(132,4,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"7647966b7343c29048673252e490f736\";a:11:{s:3:\"key\";s:32:\"7647966b7343c29048673252e490f736\";s:10:\"product_id\";i:89;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:16.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:16.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;}}}'),(133,4,'last_update','1542114377'),(134,4,'billing_first_name','Jorge'),(135,4,'billing_last_name','Mckenzie'),(136,4,'billing_address_1','311 Exeter Dr'),(137,4,'billing_city','Laredo'),(138,4,'billing_state','TX'),(139,4,'billing_postcode','78045'),(140,4,'billing_country','US'),(141,4,'billing_email','jorgemckenzie@stx.rr.com'),(142,4,'billing_phone','9562516986'),(143,4,'shipping_first_name','Jorge'),(144,4,'shipping_last_name','Mckenzie'),(145,4,'shipping_address_1','311 Exeter Dr'),(146,4,'shipping_city','Laredo'),(147,4,'shipping_state','TX'),(148,4,'shipping_postcode','78045'),(149,4,'shipping_country','US'),(150,4,'shipping_method','a:1:{i:0;s:11:\"flat_rate:1\";}'),(151,4,'shipping_phone','9562516986'),(152,4,'wc_last_active','1542067200'),(153,4,'_stripe_customer_id','cus_DxxVujy3Xr2n7L'),(154,5,'nickname','ktonucci'),(155,5,'first_name','Karen'),(156,5,'last_name','Tonucci'),(157,5,'description',''),(158,5,'rich_editing','true'),(159,5,'syntax_highlighting','true'),(160,5,'comment_shortcuts','false'),(161,5,'admin_color','fresh'),(162,5,'use_ssl','0'),(163,5,'show_admin_bar_front','true'),(164,5,'locale',''),(165,5,'wprl_capabilities','a:1:{s:8:\"customer\";b:1;}'),(166,5,'wprl_user_level','0'),(167,5,'_yoast_wpseo_profile_updated','1544117607'),(168,5,'session_tokens','a:1:{s:64:\"0b68e6a0cfecbafa86880fd6d0ebb5f8ab414354207c18e112c3af481d135769\";a:4:{s:10:\"expiration\";i:1545327218;s:2:\"ip\";s:14:\"184.54.157.183\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Linux; Android 8.0.0; SM-N950U1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.83 Mobile Safari/537.36\";s:5:\"login\";i:1544117618;}}'),(169,5,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"7647966b7343c29048673252e490f736\";a:11:{s:3:\"key\";s:32:\"7647966b7343c29048673252e490f736\";s:10:\"product_id\";i:89;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:16.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:16.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";i:0;}}}'),(170,5,'last_update','1544117618'),(171,5,'billing_first_name','Karen'),(172,5,'billing_last_name','Tonucci'),(173,5,'billing_address_1','5009 Argentine ct'),(174,5,'billing_city','Cincinnati'),(175,5,'billing_state','OH'),(176,5,'billing_postcode','45244'),(177,5,'billing_country','US'),(178,5,'billing_email','ktonucci@gmail.com'),(179,5,'shipping_first_name','Karen'),(180,5,'shipping_last_name','Tonucci'),(181,5,'shipping_address_1','5009 Argentine ct'),(182,5,'shipping_city','Cincinnati'),(183,5,'shipping_state','OH'),(184,5,'shipping_postcode','45244'),(185,5,'shipping_country','US'),(186,5,'shipping_method','a:1:{i:0;s:11:\"flat_rate:1\";}'),(187,5,'shipping_phone',''),(188,5,'wc_last_active','1544054400'),(189,1,'last_update','1544477238'),(190,1,'billing_first_name','joseph'),(191,1,'billing_last_name','Willett'),(192,1,'billing_company','The Remote Controller'),(193,1,'billing_address_1','15903 Prairie ave'),(194,1,'billing_address_2','apt 4'),(195,1,'billing_city','Lawndale'),(196,1,'billing_state','CA'),(197,1,'billing_postcode','90260'),(198,1,'billing_country','US'),(199,1,'billing_email','joewillett44@gmail.com'),(200,1,'billing_phone','6616748245'),(201,1,'shipping_first_name','joseph'),(202,1,'shipping_last_name','Willett'),(203,1,'shipping_company','The Remote Controller'),(204,1,'shipping_address_1','15903 Prairie ave'),(205,1,'shipping_address_2','apt 4'),(206,1,'shipping_city','Lawndale'),(207,1,'shipping_state','CA'),(208,1,'shipping_postcode','90260'),(209,1,'shipping_country','US'),(211,1,'shipping_phone','6616748245'),(224,1,'_woocommerce_tracks_anon_id','woo:OEDsQJu+W8cpuuw+qtweyvMV'),(212,1,'jetpack_tracks_wpcom_id','138275270'),(231,1,'wprl_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:430:\"Yoast SEO and WooCommerce can work together a lot better by adding a helper plugin. Please install Yoast WooCommerce SEO to make your life better. <a href=\"https://yoa.st/1o0?php_version=5.6&platform=wordpress&platform_version=5.2.4&software=free&software_version=12.4&days_active=30plus&user_language=en_US\" aria-label=\"More information about Yoast WooCommerce SEO\" target=\"_blank\" rel=\"noopener noreferrer\">More information</a>.\";s:7:\"options\";a:9:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:44:\"wpseo-suggested-plugin-yoast-woocommerce-seo\";s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:15:\"install_plugins\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}');
/*!40000 ALTER TABLE `wprl_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_users`
--

DROP TABLE IF EXISTS `wprl_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_users`
--

LOCK TABLES `wprl_users` WRITE;
/*!40000 ALTER TABLE `wprl_users` DISABLE KEYS */;
INSERT INTO `wprl_users` VALUES (1,'Remote Rangler','$P$BncHySMG5wTXAcD9qIlVALvFa9SzdS1','remote-rangler','admin@remoterangler.com','','2018-02-02 04:24:21','1517691570:$P$BSWJ.jrj6wzvRfMqsJ/6kndGym.0im0',0,'Remote Rangler'),(2,'rain4904','$P$BKMi8nv3Y5TMGvjySZNq1VFVIBljPA/','rain4904','rain4904@yahoo.com','','2018-08-02 11:27:18','',0,'rain4904'),(3,'momazing','$P$Byf3nU7ILX1d4OyoAs3ZsxndHiRe.y0','momazing','momazing@gmail.com','','2018-11-05 21:45:57','',0,'momazing'),(4,'jorgemckenzie','$P$BP5aBZl3UtupYvw7L.9rMf9pfy8Me40','jorgemckenzie','jorgemckenzie@stx.rr.com','','2018-11-13 13:06:01','',0,'jorgemckenzie'),(5,'ktonucci','$P$BenrFdOb7QgbMsLbkP.91ClWbKZOQx.','ktonucci','ktonucci@gmail.com','','2018-12-06 17:33:27','',0,'ktonucci');
/*!40000 ALTER TABLE `wprl_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_wc_download_log`
--

DROP TABLE IF EXISTS `wprl_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_wc_download_log`
--

LOCK TABLES `wprl_wc_download_log` WRITE;
/*!40000 ALTER TABLE `wprl_wc_download_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_wc_download_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wprl_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT 0,
  `downloadable` tinyint(1) DEFAULT 0,
  `min_price` decimal(10,2) DEFAULT NULL,
  `max_price` decimal(10,2) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT 0,
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT 0,
  `average_rating` decimal(3,2) DEFAULT 0.00,
  `total_sales` bigint(20) DEFAULT 0,
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_wc_product_meta_lookup`
--

LOCK TABLES `wprl_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wprl_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wprl_wc_product_meta_lookup` VALUES (89,'',0,0,16.99,16.99,0,NULL,'instock',1,5.00,8),(95,'',0,0,28.99,28.99,0,NULL,'instock',0,0.00,7),(151,'',0,0,20.99,20.99,0,NULL,'instock',0,0.00,7),(183,'',0,0,12.99,12.99,0,NULL,'instock',1,5.00,24);
/*!40000 ALTER TABLE `wprl_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wprl_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_wc_tax_rate_classes`
--

LOCK TABLES `wprl_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wprl_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wprl_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wprl_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_wc_webhooks`
--

DROP TABLE IF EXISTS `wprl_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT 0,
  `pending_delivery` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_wc_webhooks`
--

LOCK TABLES `wprl_wc_webhooks` WRITE;
/*!40000 ALTER TABLE `wprl_wc_webhooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_wc_webhooks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wprl_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_api_keys`
--

LOCK TABLES `wprl_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_api_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wprl_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_attribute_taxonomies`
--

LOCK TABLES `wprl_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_attribute_taxonomies` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wprl_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_downloadable_product_permissions`
--

LOCK TABLES `wprl_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_log`
--

DROP TABLE IF EXISTS `wprl_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_log`
--

LOCK TABLES `wprl_woocommerce_log` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_woocommerce_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_order_itemmeta`
--

DROP TABLE IF EXISTS `wprl_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM AUTO_INCREMENT=892 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_order_itemmeta`
--

LOCK TABLES `wprl_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_order_itemmeta` DISABLE KEYS */;
INSERT INTO `wprl_woocommerce_order_itemmeta` VALUES (1,1,'_product_id','183'),(2,1,'_variation_id','0'),(3,1,'_qty','1'),(4,1,'_tax_class',''),(5,1,'_line_subtotal','12.99'),(6,1,'_line_subtotal_tax','1.23405'),(7,1,'_line_total','12.99'),(8,1,'_line_tax','1.23405'),(9,1,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.23405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(10,2,'method_id','flat_rate:1'),(11,2,'cost','0.99'),(12,2,'total_tax','0'),(13,2,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(14,2,'Items','Remote Rangler - 2 Holders &times; 1'),(15,3,'rate_id','1'),(16,3,'label','CA Tax'),(17,3,'compound',''),(18,3,'tax_amount','1.23'),(19,3,'shipping_tax_amount','0'),(20,4,'_product_id','183'),(21,4,'_variation_id','0'),(22,4,'_qty','1'),(23,4,'_tax_class',''),(24,4,'_line_subtotal','12.99'),(25,4,'_line_subtotal_tax','1.23405'),(26,4,'_line_total','11.69'),(27,4,'_line_tax','1.11055'),(28,4,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.11055\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(29,5,'method_id','flat_rate:1'),(30,5,'cost','0.99'),(31,5,'total_tax','0'),(32,5,'taxes','a:1:{s:5:\"total\";a:1:{i:1;s:0:\"\";}}'),(33,5,'Items','Remote Rangler - 2 Holders &times; 1'),(34,6,'rate_id','1'),(35,6,'label','CA Tax'),(36,6,'compound',''),(37,6,'tax_amount','1.11055'),(38,6,'shipping_tax_amount','0'),(39,7,'discount_amount','1.3'),(40,7,'discount_amount_tax','0.12'),(41,7,'coupon_data','a:25:{s:2:\"id\";i:172;s:4:\"code\";s:3:\"fam\";s:6:\"amount\";s:2:\"10\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2018-04-29 05:58:13.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2018-04-29 05:58:13.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2018-06-30 00:00:00.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"discount_type\";s:7:\"percent\";s:11:\"description\";s:0:\"\";s:11:\"usage_count\";i:0;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:0:{}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"used_by\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:1:{i:0;O:12:\"WC_Meta_Data\":2:{s:15:\"\0*\0current_data\";a:3:{s:2:\"id\";i:697;s:3:\"key\";s:18:\"_publicize_pending\";s:5:\"value\";s:1:\"1\";}s:7:\"\0*\0data\";a:3:{s:2:\"id\";i:697;s:3:\"key\";s:18:\"_publicize_pending\";s:5:\"value\";s:1:\"1\";}}}}'),(42,8,'_product_id','95'),(43,8,'_variation_id','0'),(44,8,'_qty','1'),(45,8,'_tax_class',''),(46,8,'_line_subtotal','28.99'),(47,8,'_line_subtotal_tax','2.75405'),(48,8,'_line_total','11.6'),(49,8,'_line_tax','1.102'),(50,8,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:5:\"1.102\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"2.75405\";}}'),(51,9,'method_id','flat_rate:1'),(52,9,'cost','0.99'),(53,9,'total_tax','0'),(54,9,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(55,9,'Items','Remote Rangler 6 Holders &times; 1'),(56,10,'rate_id','1'),(57,10,'label','CA Tax'),(58,10,'compound',''),(59,10,'tax_amount','1.1'),(60,10,'shipping_tax_amount','0'),(61,11,'discount_amount','17.39'),(62,11,'discount_amount_tax','1.65'),(63,11,'coupon_data','a:25:{s:2:\"id\";i:216;s:4:\"code\";s:7:\"replace\";s:6:\"amount\";s:2:\"60\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2018-05-21 18:04:02.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2018-05-21 18:06:13.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2018-08-31 00:00:00.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"discount_type\";s:7:\"percent\";s:11:\"description\";s:0:\"\";s:11:\"usage_count\";i:0;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:0:{}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:7;s:20:\"usage_limit_per_user\";i:2;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"used_by\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(64,12,'_product_id','183'),(65,12,'_variation_id','0'),(66,12,'_qty','1'),(67,12,'_tax_class',''),(68,12,'_line_subtotal','12.99'),(69,12,'_line_subtotal_tax','1.23405'),(70,12,'_line_total','12.99'),(71,12,'_line_tax','1.23405'),(72,12,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.23405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(73,13,'method_id','flat_rate:1'),(74,13,'cost','0.99'),(75,13,'total_tax','0'),(76,13,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(77,13,'Items','Remote Rangler - 2 Holders &times; 1'),(78,14,'rate_id','1'),(79,14,'label','CA Tax'),(80,14,'compound',''),(81,14,'tax_amount','1.23'),(82,14,'shipping_tax_amount','0'),(83,15,'_product_id','183'),(84,15,'_variation_id','0'),(85,15,'_qty','2'),(86,15,'_tax_class',''),(87,15,'_line_subtotal','25.98'),(88,15,'_line_subtotal_tax','2.4681'),(89,15,'_line_total','25.98'),(90,15,'_line_tax','2.4681'),(91,15,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:6:\"2.4681\";}s:8:\"subtotal\";a:1:{i:1;s:6:\"2.4681\";}}'),(92,16,'_product_id','89'),(93,16,'_variation_id','0'),(94,16,'_qty','1'),(95,16,'_tax_class',''),(96,16,'_line_subtotal','16.99'),(97,16,'_line_subtotal_tax','1.61405'),(98,16,'_line_total','16.99'),(99,16,'_line_tax','1.61405'),(100,16,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.61405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.61405\";}}'),(101,17,'method_id','flat_rate:1'),(102,17,'cost','0.99'),(103,17,'total_tax','0'),(104,17,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(105,17,'Items','Remote Rangler - 2 Holders &times; 2, Remote Rangler 3 Holders &times; 1'),(106,18,'rate_id','1'),(107,18,'label','CA Tax'),(108,18,'compound',''),(109,18,'tax_amount','4.08'),(110,18,'shipping_tax_amount','0'),(111,19,'_product_id','89'),(112,19,'_variation_id','0'),(113,19,'_qty','1'),(114,19,'_tax_class',''),(115,19,'_line_subtotal','16.99'),(116,19,'_line_subtotal_tax','1.61405'),(117,19,'_line_total','16.99'),(118,19,'_line_tax','1.61405'),(119,19,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.61405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.61405\";}}'),(120,20,'_product_id','151'),(121,20,'_variation_id','0'),(122,20,'_qty','1'),(123,20,'_tax_class',''),(124,20,'_line_subtotal','20.99'),(125,20,'_line_subtotal_tax','1.99405'),(126,20,'_line_total','20.99'),(127,20,'_line_tax','1.99405'),(128,20,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.99405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.99405\";}}'),(129,21,'method_id','flat_rate:1'),(130,21,'cost','0.99'),(131,21,'total_tax','0'),(132,21,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(133,21,'Items','Remote Rangler 3 Holders &times; 1, Remote Rangler - 4 Holders &times; 1'),(134,22,'rate_id','1'),(135,22,'label','CA Tax'),(136,22,'compound',''),(137,22,'tax_amount','3.6'),(138,22,'shipping_tax_amount','0'),(139,23,'_product_id','183'),(140,23,'_variation_id','0'),(141,23,'_qty','2'),(142,23,'_tax_class',''),(143,23,'_line_subtotal','25.98'),(144,23,'_line_subtotal_tax','2.4681'),(145,23,'_line_total','25.98'),(146,23,'_line_tax','2.4681'),(147,23,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:6:\"2.4681\";}s:8:\"subtotal\";a:1:{i:1;s:6:\"2.4681\";}}'),(148,24,'method_id','flat_rate:1'),(149,24,'cost','0.99'),(150,24,'total_tax','0'),(151,24,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(152,24,'Items','Remote Rangler - 2 Holders &times; 2'),(153,25,'rate_id','1'),(154,25,'label','CA Tax'),(155,25,'compound',''),(156,25,'tax_amount','2.47'),(157,25,'shipping_tax_amount','0'),(158,26,'_product_id','183'),(159,26,'_variation_id','0'),(160,26,'_qty','1'),(161,26,'_tax_class',''),(162,26,'_line_subtotal','12.99'),(163,26,'_line_subtotal_tax','1.23405'),(164,26,'_line_total','9.09'),(165,26,'_line_tax','0.86355'),(166,26,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:2;s:7:\"0.86355\";}s:8:\"subtotal\";a:1:{i:2;s:7:\"1.23405\";}}'),(167,27,'method_id','flat_rate'),(168,27,'instance_id','1'),(169,27,'cost','0.99'),(170,27,'total_tax','0'),(171,27,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(172,27,'Items','Remote Rangler - 2 Holders &times; 1'),(173,28,'rate_id','2'),(174,28,'label','CA Tax'),(175,28,'compound',''),(176,28,'tax_amount','0.86'),(177,28,'shipping_tax_amount','0'),(178,29,'discount_amount','3.9'),(179,29,'discount_amount_tax','0.37'),(180,29,'coupon_data','a:24:{s:2:\"id\";i:251;s:4:\"code\";s:3:\"rob\";s:6:\"amount\";s:2:\"30\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2018-08-08 09:02:31.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2018-08-08 09:02:31.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:7:\"percent\";s:11:\"description\";s:0:\"\";s:11:\"usage_count\";i:0;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:0:{}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(181,30,'_product_id','95'),(182,30,'_variation_id','0'),(183,30,'_qty','1'),(184,30,'_tax_class',''),(185,30,'_line_subtotal','28.99'),(186,30,'_line_subtotal_tax','2.246725'),(187,30,'_line_total','28.99'),(188,30,'_line_tax','2.246725'),(189,30,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:3;s:8:\"2.246725\";}s:8:\"subtotal\";a:1:{i:3;s:8:\"2.246725\";}}'),(190,31,'method_id','flat_rate'),(191,31,'instance_id','1'),(192,31,'cost','0.99'),(193,31,'total_tax','0'),(194,31,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(195,31,'Items','Remote Rangler 6 Holders &times; 1'),(196,32,'rate_id','3'),(197,32,'label','CA Tax'),(198,32,'compound',''),(199,32,'tax_amount','2.25'),(200,32,'shipping_tax_amount','0'),(201,33,'_product_id','151'),(202,33,'_variation_id','0'),(203,33,'_qty','1'),(204,33,'_tax_class',''),(205,33,'_line_subtotal','20.99'),(206,33,'_line_subtotal_tax','0'),(207,33,'_line_total','20.99'),(208,33,'_line_tax','0'),(209,33,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(210,34,'method_id','flat_rate'),(211,34,'instance_id','1'),(212,34,'cost','0.99'),(213,34,'total_tax','0'),(214,34,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(215,34,'Items','Remote Rangler - 4 Holders &times; 1'),(216,35,'_product_id','183'),(217,35,'_variation_id','0'),(218,35,'_qty','1'),(219,35,'_tax_class',''),(220,35,'_line_subtotal','12.99'),(221,35,'_line_subtotal_tax','0'),(222,35,'_line_total','12.99'),(223,35,'_line_tax','0'),(224,35,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(225,36,'method_id','flat_rate'),(226,36,'instance_id','1'),(227,36,'cost','0.99'),(228,36,'total_tax','0'),(229,36,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(230,36,'Items','Remote Rangler - 2 Holders &times; 1'),(231,37,'_product_id','89'),(232,37,'_variation_id','0'),(233,37,'_qty','1'),(234,37,'_tax_class',''),(235,37,'_line_subtotal','16.99'),(236,37,'_line_subtotal_tax','0'),(237,37,'_line_total','16.99'),(238,37,'_line_tax','0'),(239,37,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(240,38,'method_id','flat_rate'),(241,38,'instance_id','1'),(242,38,'cost','0.99'),(243,38,'total_tax','0'),(244,38,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(245,38,'Items','Remote Rangler 3 Holders &times; 1'),(246,39,'_product_id','89'),(247,39,'_variation_id','0'),(248,39,'_qty','1'),(249,39,'_tax_class',''),(250,39,'_line_subtotal','16.99'),(251,39,'_line_subtotal_tax','0'),(252,39,'_line_total','16.99'),(253,39,'_line_tax','0'),(254,39,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(255,40,'method_id','flat_rate'),(256,40,'instance_id','1'),(257,40,'cost','0.99'),(258,40,'total_tax','0'),(259,40,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(260,40,'Items','Remote Rangler 3 Holders &times; 1'),(261,41,'_product_id','151'),(262,41,'_variation_id','0'),(263,41,'_qty','1'),(264,41,'_tax_class',''),(265,41,'_line_subtotal','20.99'),(266,41,'_line_subtotal_tax','0'),(267,41,'_line_total','20.99'),(268,41,'_line_tax','0'),(269,41,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(270,42,'method_id','flat_rate'),(271,42,'instance_id','1'),(272,42,'cost','0.99'),(273,42,'total_tax','0'),(274,42,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(275,42,'Items','Remote Rangler - 4 Holders &times; 1'),(276,43,'_product_id','89'),(277,43,'_variation_id','0'),(278,43,'_qty','1'),(279,43,'_tax_class',''),(280,43,'_line_subtotal','16.99'),(281,43,'_line_subtotal_tax','1.61405'),(282,43,'_line_total','16.99'),(283,43,'_line_tax','1.61405'),(284,43,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.61405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.61405\";}}'),(285,44,'_product_id','183'),(286,44,'_variation_id','0'),(287,44,'_qty','2'),(288,44,'_tax_class',''),(289,44,'_line_subtotal','25.98'),(290,44,'_line_subtotal_tax','2.4681'),(291,44,'_line_total','25.98'),(292,44,'_line_tax','2.4681'),(293,44,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:6:\"2.4681\";}s:8:\"subtotal\";a:1:{i:1;s:6:\"2.4681\";}}'),(294,45,'method_id','flat_rate'),(295,45,'instance_id','1'),(296,45,'cost','0.99'),(297,45,'total_tax','0'),(298,45,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(299,45,'Items','Remote Rangler 3 Holders &times; 1, Remote Rangler - 2 Holders &times; 2'),(300,46,'rate_id','1'),(301,46,'label','CA Tax'),(302,46,'compound',''),(303,46,'tax_amount','4.08'),(304,46,'shipping_tax_amount','0'),(305,47,'_product_id','183'),(306,47,'_variation_id','0'),(307,47,'_qty','1'),(308,47,'_tax_class',''),(309,47,'_line_subtotal','12.99'),(310,47,'_line_subtotal_tax','0'),(311,47,'_line_total','12.99'),(312,47,'_line_tax','0'),(313,47,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(314,48,'method_id','flat_rate'),(315,48,'instance_id','1'),(316,48,'cost','0.99'),(317,48,'total_tax','0'),(318,48,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(319,48,'Items','Remote Rangler - 2 Holders &times; 1'),(320,49,'_product_id','183'),(321,49,'_variation_id','0'),(322,49,'_qty','1'),(323,49,'_tax_class',''),(324,49,'_line_subtotal','12.99'),(325,49,'_line_subtotal_tax','0'),(326,49,'_line_total','12.99'),(327,49,'_line_tax','0'),(328,49,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(329,50,'method_id','flat_rate'),(330,50,'instance_id','1'),(331,50,'cost','0.99'),(332,50,'total_tax','0'),(333,50,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(334,50,'Items','Remote Rangler - 2 Holders &times; 1'),(335,51,'_product_id','183'),(336,51,'_variation_id','0'),(337,51,'_qty','2'),(338,51,'_tax_class',''),(339,51,'_line_subtotal','25.98'),(340,51,'_line_subtotal_tax','0'),(341,51,'_line_total','25.98'),(342,51,'_line_tax','0'),(343,51,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(344,52,'method_id','flat_rate'),(345,52,'instance_id','1'),(346,52,'cost','0.99'),(347,52,'total_tax','0'),(348,52,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(349,52,'Items','Remote Rangler - 2 Holders &times; 2'),(350,53,'_product_id','151'),(351,53,'_variation_id','0'),(352,53,'_qty','1'),(353,53,'_tax_class',''),(354,53,'_line_subtotal','20.99'),(355,53,'_line_subtotal_tax','0'),(356,53,'_line_total','20.99'),(357,53,'_line_tax','0'),(358,53,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(359,54,'method_id','flat_rate'),(360,54,'instance_id','1'),(361,54,'cost','0.99'),(362,54,'total_tax','0'),(363,54,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(364,54,'Items','Remote Rangler - 4 Holders &times; 1'),(365,55,'_product_id','95'),(366,55,'_variation_id','0'),(367,55,'_qty','1'),(368,55,'_tax_class',''),(369,55,'_line_subtotal','28.99'),(370,55,'_line_subtotal_tax','0'),(371,55,'_line_total','28.99'),(372,55,'_line_tax','0'),(373,55,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(374,56,'method_id','flat_rate'),(375,56,'instance_id','1'),(376,56,'cost','0.99'),(377,56,'total_tax','0'),(378,56,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(379,56,'Items','Remote Rangler 6 Holders &times; 1'),(380,57,'_product_id','183'),(381,57,'_variation_id','0'),(382,57,'_qty','1'),(383,57,'_tax_class',''),(384,57,'_line_subtotal','12.99'),(385,57,'_line_subtotal_tax','1.23405'),(386,57,'_line_total','12.99'),(387,57,'_line_tax','1.23405'),(388,57,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.23405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(389,58,'method_id','flat_rate'),(390,58,'instance_id','1'),(391,58,'cost','0.99'),(392,58,'total_tax','0'),(393,58,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(394,58,'Items','Remote Rangler - 2 Holders &times; 1'),(395,59,'rate_id','1'),(396,59,'label','CA Tax'),(397,59,'compound',''),(398,59,'tax_amount','1.23'),(399,59,'shipping_tax_amount','0'),(400,60,'_product_id','151'),(401,60,'_variation_id','0'),(402,60,'_qty','1'),(403,60,'_tax_class',''),(404,60,'_line_subtotal','20.99'),(405,60,'_line_subtotal_tax','1.99405'),(406,60,'_line_total','20.99'),(407,60,'_line_tax','1.99405'),(408,60,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.99405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.99405\";}}'),(409,61,'method_id','flat_rate'),(410,61,'instance_id','1'),(411,61,'cost','0.99'),(412,61,'total_tax','0'),(413,61,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(414,61,'Items','Remote Rangler - 4 Holders &times; 1'),(415,62,'rate_id','1'),(416,62,'label','CA Tax'),(417,62,'compound',''),(418,62,'tax_amount','1.99'),(419,62,'shipping_tax_amount','0'),(420,63,'_product_id','183'),(421,63,'_variation_id','0'),(422,63,'_qty','2'),(423,63,'_tax_class',''),(424,63,'_line_subtotal','25.98'),(425,63,'_line_subtotal_tax','2.4681'),(426,63,'_line_total','25.98'),(427,63,'_line_tax','2.4681'),(428,63,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:6:\"2.4681\";}s:8:\"subtotal\";a:1:{i:1;s:6:\"2.4681\";}}'),(429,64,'method_id','flat_rate'),(430,64,'instance_id','1'),(431,64,'cost','0.99'),(432,64,'total_tax','0'),(433,64,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(434,64,'Items','Remote Rangler - 2 Holders &times; 2'),(435,65,'rate_id','1'),(436,65,'label','CA Tax'),(437,65,'compound',''),(438,65,'tax_amount','2.47'),(439,65,'shipping_tax_amount','0'),(440,66,'_product_id','151'),(441,66,'_variation_id','0'),(442,66,'_qty','1'),(443,66,'_tax_class',''),(444,66,'_line_subtotal','20.99'),(445,66,'_line_subtotal_tax','1.99405'),(446,66,'_line_total','20.99'),(447,66,'_line_tax','1.99405'),(448,66,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.99405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.99405\";}}'),(449,67,'method_id','flat_rate'),(450,67,'instance_id','1'),(451,67,'cost','0.99'),(452,67,'total_tax','0'),(453,67,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(454,67,'Items','Remote Rangler - 4 Holders &times; 1'),(455,68,'rate_id','1'),(456,68,'label','CA Tax'),(457,68,'compound',''),(458,68,'tax_amount','1.99'),(459,68,'shipping_tax_amount','0'),(460,69,'_product_id','183'),(461,69,'_variation_id','0'),(462,69,'_qty','1'),(463,69,'_tax_class',''),(464,69,'_line_subtotal','12.99'),(465,69,'_line_subtotal_tax','1.23405'),(466,69,'_line_total','12.99'),(467,69,'_line_tax','1.23405'),(468,69,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.23405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(469,70,'method_id','flat_rate'),(470,70,'instance_id','1'),(471,70,'cost','0.99'),(472,70,'total_tax','0'),(473,70,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(474,70,'Items','Remote Rangler - 2 Holders &times; 1'),(475,71,'rate_id','1'),(476,71,'label','CA Tax'),(477,71,'compound',''),(478,71,'tax_amount','1.23'),(479,71,'shipping_tax_amount','0'),(480,72,'_product_id','183'),(481,72,'_variation_id','0'),(482,72,'_qty','1'),(483,72,'_tax_class',''),(484,72,'_line_subtotal','12.99'),(485,72,'_line_subtotal_tax','1.23405'),(486,72,'_line_total','12.99'),(487,72,'_line_tax','1.23405'),(488,72,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.23405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(489,73,'method_id','flat_rate'),(490,73,'instance_id','1'),(491,73,'cost','0.99'),(492,73,'total_tax','0'),(493,73,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(494,73,'Items','Remote Rangler - 2 Holders &times; 1'),(495,74,'rate_id','1'),(496,74,'label','CA Tax'),(497,74,'compound',''),(498,74,'tax_amount','1.23'),(499,74,'shipping_tax_amount','0'),(500,75,'_product_id','89'),(501,75,'_variation_id','0'),(502,75,'_qty','1'),(503,75,'_tax_class',''),(504,75,'_line_subtotal','16.99'),(505,75,'_line_subtotal_tax','1.61405'),(506,75,'_line_total','16.99'),(507,75,'_line_tax','1.61405'),(508,75,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.61405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.61405\";}}'),(509,76,'method_id','flat_rate'),(510,76,'instance_id','1'),(511,76,'cost','0.99'),(512,76,'total_tax','0'),(513,76,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(514,76,'Items','Remote Rangler 3 Holders &times; 1'),(515,77,'rate_id','1'),(516,77,'label','CA Tax'),(517,77,'compound',''),(518,77,'tax_amount','1.61'),(519,77,'shipping_tax_amount','0'),(520,78,'_product_id','95'),(521,78,'_variation_id','0'),(522,78,'_qty','2'),(523,78,'_tax_class',''),(524,78,'_line_subtotal','57.98'),(525,78,'_line_subtotal_tax','5.5081'),(526,78,'_line_total','57.98'),(527,78,'_line_tax','5.5081'),(528,78,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:6:\"5.5081\";}s:8:\"subtotal\";a:1:{i:1;s:6:\"5.5081\";}}'),(529,79,'method_id','flat_rate'),(530,79,'instance_id','1'),(531,79,'cost','0.99'),(532,79,'total_tax','0'),(533,79,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(534,79,'Items','Remote Rangler 6 Holders &times; 2'),(535,80,'rate_id','1'),(536,80,'label','CA Tax'),(537,80,'compound',''),(538,80,'tax_amount','5.51'),(539,80,'shipping_tax_amount','0'),(540,81,'_product_id','183'),(541,81,'_variation_id','0'),(542,81,'_qty','1'),(543,81,'_tax_class',''),(544,81,'_line_subtotal','12.99'),(545,81,'_line_subtotal_tax','1.23405'),(546,81,'_line_total','12.99'),(547,81,'_line_tax','1.23405'),(548,81,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.23405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(549,82,'method_id','flat_rate'),(550,82,'instance_id','1'),(551,82,'cost','0.99'),(552,82,'total_tax','0'),(553,82,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(554,82,'Items','Remote Rangler - 2 Holders &times; 1'),(555,83,'rate_id','1'),(556,83,'label','CA Tax'),(557,83,'compound',''),(558,83,'tax_amount','1.23'),(559,83,'shipping_tax_amount','0'),(560,84,'_product_id','89'),(561,84,'_variation_id','0'),(562,84,'_qty','1'),(563,84,'_tax_class',''),(564,84,'_line_subtotal','16.99'),(565,84,'_line_subtotal_tax','1.61405'),(566,84,'_line_total','16.99'),(567,84,'_line_tax','1.61405'),(568,84,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.61405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.61405\";}}'),(569,85,'method_id','flat_rate'),(570,85,'instance_id','1'),(571,85,'cost','0.99'),(572,85,'total_tax','0'),(573,85,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(574,85,'Items','Remote Rangler 3 Holders &times; 1'),(575,86,'rate_id','1'),(576,86,'label','CA Tax'),(577,86,'compound',''),(578,86,'tax_amount','1.61'),(579,86,'shipping_tax_amount','0'),(580,87,'_product_id','95'),(581,87,'_variation_id','0'),(582,87,'_qty','1'),(583,87,'_tax_class',''),(584,87,'_line_subtotal','28.99'),(585,87,'_line_subtotal_tax','2.75405'),(586,87,'_line_total','14.5'),(587,87,'_line_tax','1.3775'),(588,87,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:6:\"1.3775\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"2.75405\";}}'),(589,88,'method_id','flat_rate'),(590,88,'instance_id','1'),(591,88,'cost','0.99'),(592,88,'total_tax','0'),(593,88,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(594,88,'Items','Remote Rangler 6 Holders &times; 1'),(595,89,'rate_id','1'),(596,89,'label','CA Tax'),(597,89,'compound',''),(598,89,'tax_amount','1.38'),(599,89,'shipping_tax_amount','0'),(600,90,'discount_amount','14.49'),(601,90,'discount_amount_tax','1.38'),(602,90,'coupon_data','a:24:{s:2:\"id\";i:296;s:4:\"code\";s:9:\"robmoritz\";s:6:\"amount\";s:2:\"50\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2019-06-02 17:05:37.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2019-06-02 17:05:37.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:0;s:4:\"date\";s:26:\"2019-06-05 00:00:00.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"discount_type\";s:7:\"percent\";s:11:\"description\";s:0:\"\";s:11:\"usage_count\";i:0;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:0:{}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:1:{i:0;O:12:\"WC_Meta_Data\":2:{s:15:\"\0*\0current_data\";a:3:{s:2:\"id\";i:2791;s:3:\"key\";s:13:\"_uabb_version\";s:5:\"value\";s:6:\"1.13.2\";}s:7:\"\0*\0data\";a:3:{s:2:\"id\";i:2791;s:3:\"key\";s:13:\"_uabb_version\";s:5:\"value\";s:6:\"1.13.2\";}}}}'),(603,91,'_product_id','183'),(604,91,'_variation_id','0'),(605,91,'_qty','2'),(606,91,'_tax_class',''),(607,91,'_line_subtotal','25.98'),(608,91,'_line_subtotal_tax','2.4681'),(609,91,'_line_total','25.98'),(610,91,'_line_tax','2.4681'),(611,91,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:6:\"2.4681\";}s:8:\"subtotal\";a:1:{i:1;s:6:\"2.4681\";}}'),(612,92,'method_id','flat_rate'),(613,92,'instance_id','1'),(614,92,'cost','0.99'),(615,92,'total_tax','0'),(616,92,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(617,92,'Items','Remote Rangler - 2 Holders &times; 2'),(618,93,'rate_id','1'),(619,93,'label','CA Tax'),(620,93,'compound',''),(621,93,'tax_amount','2.47'),(622,93,'shipping_tax_amount','0'),(623,94,'_product_id','89'),(624,94,'_variation_id','0'),(625,94,'_qty','1'),(626,94,'_tax_class',''),(627,94,'_line_subtotal','16.99'),(628,94,'_line_subtotal_tax','1.61405'),(629,94,'_line_total','16.99'),(630,94,'_line_tax','1.61405'),(631,94,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.61405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.61405\";}}'),(632,95,'_product_id','151'),(633,95,'_variation_id','0'),(634,95,'_qty','1'),(635,95,'_tax_class',''),(636,95,'_line_subtotal','20.99'),(637,95,'_line_subtotal_tax','1.99405'),(638,95,'_line_total','20.99'),(639,95,'_line_tax','1.99405'),(640,95,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.99405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.99405\";}}'),(641,96,'method_id','flat_rate'),(642,96,'instance_id','1'),(643,96,'cost','0.99'),(644,96,'total_tax','0'),(645,96,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(646,96,'Items','Remote Rangler 3 Holders &times; 1, Remote Rangler - 4 Holders &times; 1'),(647,97,'rate_id','1'),(648,97,'label','CA Tax'),(649,97,'compound',''),(650,97,'tax_amount','3.6'),(651,97,'shipping_tax_amount','0'),(652,98,'_product_id','183'),(653,98,'_variation_id','0'),(654,98,'_qty','1'),(655,98,'_tax_class',''),(656,98,'_line_subtotal','12.99'),(657,98,'_line_subtotal_tax','1.23405'),(658,98,'_line_total','12.99'),(659,98,'_line_tax','1.23405'),(660,98,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.23405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(661,99,'method_id','flat_rate'),(662,99,'instance_id','1'),(663,99,'cost','0.99'),(664,99,'total_tax','0'),(665,99,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(666,99,'Items','Remote Rangler - 2 Holders &times; 1'),(667,100,'rate_id','1'),(668,100,'label','CA Tax'),(669,100,'compound',''),(670,100,'tax_amount','1.23'),(671,100,'shipping_tax_amount','0'),(672,101,'_product_id','183'),(673,101,'_variation_id','0'),(674,101,'_qty','1'),(675,101,'_tax_class',''),(676,101,'_line_subtotal','12.99'),(677,101,'_line_subtotal_tax','1.23'),(678,101,'_line_total','12.99'),(679,101,'_line_tax','1.23'),(680,101,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.23405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(681,102,'method_id','flat_rate'),(682,102,'instance_id','1'),(683,102,'cost','0.99'),(684,102,'total_tax','0'),(685,102,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(686,102,'Items','Remote Rangler - 2 Holders &times; 1'),(687,103,'rate_id','1'),(688,103,'label','CA Tax'),(689,103,'compound',''),(690,103,'tax_amount','1.23'),(691,103,'shipping_tax_amount','0'),(692,104,'_product_id','183'),(693,104,'_variation_id','0'),(694,104,'_qty','1'),(695,104,'_tax_class',''),(696,104,'_line_subtotal','12.99'),(697,104,'_line_subtotal_tax','1.23'),(698,104,'_line_total','12.99'),(699,104,'_line_tax','1.23'),(700,104,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.23405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(701,105,'method_id','flat_rate'),(702,105,'instance_id','1'),(703,105,'cost','0.99'),(704,105,'total_tax','0'),(705,105,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(706,105,'Items','Remote Rangler - 2 Holders &times; 1'),(707,106,'rate_id','1'),(708,106,'label','CA Tax'),(709,106,'compound',''),(710,106,'tax_amount','1.23'),(711,106,'shipping_tax_amount','0'),(712,107,'_product_id','151'),(713,107,'_variation_id','0'),(714,107,'_qty','1'),(715,107,'_tax_class',''),(716,107,'_line_subtotal','20.99'),(717,107,'_line_subtotal_tax','1.99'),(718,107,'_line_total','20.99'),(719,107,'_line_tax','1.99'),(720,107,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.99405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.99405\";}}'),(721,108,'method_id','flat_rate'),(722,108,'instance_id','1'),(723,108,'cost','0.99'),(724,108,'total_tax','0'),(725,108,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(726,108,'Items','Remote Rangler - 4 Holders &times; 1'),(727,109,'rate_id','1'),(728,109,'label','CA Tax'),(729,109,'compound',''),(730,109,'tax_amount','1.99'),(731,109,'shipping_tax_amount','0'),(732,110,'_product_id','95'),(733,110,'_variation_id','0'),(734,110,'_qty','1'),(735,110,'_tax_class',''),(736,110,'_line_subtotal','28.99'),(737,110,'_line_subtotal_tax','2.75'),(738,110,'_line_total','28.99'),(739,110,'_line_tax','2.75'),(740,110,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"2.75405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"2.75405\";}}'),(741,111,'method_id','flat_rate'),(742,111,'instance_id','1'),(743,111,'cost','0.99'),(744,111,'total_tax','0'),(745,111,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(746,111,'Items','Remote Rangler 6 Holders &times; 1'),(747,112,'rate_id','1'),(748,112,'label','CA Tax'),(749,112,'compound',''),(750,112,'tax_amount','2.75'),(751,112,'shipping_tax_amount','0'),(752,113,'_product_id','183'),(753,113,'_variation_id','0'),(754,113,'_qty','1'),(755,113,'_tax_class',''),(756,113,'_line_subtotal','12.99'),(757,113,'_line_subtotal_tax','1.23'),(758,113,'_line_total','12.99'),(759,113,'_line_tax','1.23'),(760,113,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.23405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(761,114,'method_id','flat_rate'),(762,114,'instance_id','1'),(763,114,'cost','0.99'),(764,114,'total_tax','0'),(765,114,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(766,114,'Items','Remote Rangler - 2 Holders &times; 1'),(767,115,'rate_id','1'),(768,115,'label','CA Tax'),(769,115,'compound',''),(770,115,'tax_amount','1.23'),(771,115,'shipping_tax_amount','0'),(772,116,'_product_id','183'),(773,116,'_variation_id','0'),(774,116,'_qty','1'),(775,116,'_tax_class',''),(776,116,'_line_subtotal','12.99'),(777,116,'_line_subtotal_tax','1.23'),(778,116,'_line_total','12.99'),(779,116,'_line_tax','1.23'),(780,116,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.23405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(781,117,'method_id','flat_rate'),(782,117,'instance_id','1'),(783,117,'cost','0.99'),(784,117,'total_tax','0'),(785,117,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(786,117,'Items','Remote Rangler - 2 Holders &times; 1'),(787,118,'rate_id','1'),(788,118,'label','CA Tax'),(789,118,'compound',''),(790,118,'tax_amount','1.23'),(791,118,'shipping_tax_amount','0'),(792,119,'_product_id','151'),(793,119,'_variation_id','0'),(794,119,'_qty','1'),(795,119,'_tax_class',''),(796,119,'_line_subtotal','20.99'),(797,119,'_line_subtotal_tax','1.99'),(798,119,'_line_total','20.99'),(799,119,'_line_tax','1.99'),(800,119,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.99405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.99405\";}}'),(801,120,'method_id','flat_rate'),(802,120,'instance_id','1'),(803,120,'cost','0.99'),(804,120,'total_tax','0'),(805,120,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(806,120,'Items','Remote Rangler - 4 Holders &times; 1'),(807,121,'rate_id','1'),(808,121,'label','CA Tax'),(809,121,'compound',''),(810,121,'tax_amount','1.99'),(811,121,'shipping_tax_amount','0'),(812,122,'_product_id','89'),(813,122,'_variation_id','0'),(814,122,'_qty','1'),(815,122,'_tax_class',''),(816,122,'_line_subtotal','16.99'),(817,122,'_line_subtotal_tax','1.61'),(818,122,'_line_total','16.99'),(819,122,'_line_tax','1.61'),(820,122,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.61405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.61405\";}}'),(821,123,'method_id','flat_rate'),(822,123,'instance_id','1'),(823,123,'cost','0.99'),(824,123,'total_tax','0'),(825,123,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(826,123,'Items','Remote Rangler 3 Holders &times; 1'),(827,124,'rate_id','1'),(828,124,'label','CA Tax'),(829,124,'compound',''),(830,124,'tax_amount','1.61'),(831,124,'shipping_tax_amount','0'),(832,125,'_product_id','183'),(833,125,'_variation_id','0'),(834,125,'_qty','1'),(835,125,'_tax_class',''),(836,125,'_line_subtotal','12.99'),(837,125,'_line_subtotal_tax','1.23'),(838,125,'_line_total','12.99'),(839,125,'_line_tax','1.23'),(840,125,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.23405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.23405\";}}'),(841,126,'method_id','flat_rate'),(842,126,'instance_id','1'),(843,126,'cost','0.99'),(844,126,'total_tax','0'),(845,126,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(846,126,'Items','Remote Rangler - 2 Holders &times; 1'),(847,127,'rate_id','1'),(848,127,'label','CA Tax'),(849,127,'compound',''),(850,127,'tax_amount','1.23'),(851,127,'shipping_tax_amount','0'),(852,128,'_product_id','89'),(853,128,'_variation_id','0'),(854,128,'_qty','1'),(855,128,'_tax_class',''),(856,128,'_line_subtotal','16.99'),(857,128,'_line_subtotal_tax','1.61'),(858,128,'_line_total','16.99'),(859,128,'_line_tax','1.61'),(860,128,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.61405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.61405\";}}'),(861,129,'method_id','flat_rate'),(862,129,'instance_id','1'),(863,129,'cost','0.99'),(864,129,'total_tax','0'),(865,129,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(866,129,'Items','Remote Rangler 3 Holders &times; 1'),(867,130,'rate_id','1'),(868,130,'label','CA Tax'),(869,130,'compound',''),(870,130,'tax_amount','1.61'),(871,130,'shipping_tax_amount','0'),(872,131,'_product_id','151'),(873,131,'_variation_id','0'),(874,131,'_qty','1'),(875,131,'_tax_class',''),(876,131,'_line_subtotal','20.99'),(877,131,'_line_subtotal_tax','1.99'),(878,131,'_line_total','20.99'),(879,131,'_line_tax','1.99'),(880,131,'_line_tax_data','a:2:{s:5:\"total\";a:1:{i:1;s:7:\"1.99405\";}s:8:\"subtotal\";a:1:{i:1;s:7:\"1.99405\";}}'),(881,132,'method_id','flat_rate'),(882,132,'instance_id','1'),(883,132,'cost','0.99'),(884,132,'total_tax','0'),(885,132,'taxes','a:1:{s:5:\"total\";a:0:{}}'),(886,132,'Items','Remote Rangler - 4 Holders &times; 1'),(887,133,'rate_id','1'),(888,133,'label','CA Tax'),(889,133,'compound',''),(890,133,'tax_amount','1.99'),(891,133,'shipping_tax_amount','0');
/*!40000 ALTER TABLE `wprl_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wprl_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=134 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_order_items`
--

LOCK TABLES `wprl_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_order_items` DISABLE KEYS */;
INSERT INTO `wprl_woocommerce_order_items` VALUES (1,'Remote Rangler - 2 Holders','line_item',196),(2,'Flat rate','shipping',196),(3,'US-CA-CA TAX-1','tax',196),(4,'Remote Rangler - 2 Holders','line_item',204),(5,'Flat rate','shipping',204),(6,'US-CA-CA TAX-1','tax',204),(7,'fam','coupon',204),(8,'Remote Rangler 6 Holders','line_item',217),(9,'Flat rate','shipping',217),(10,'US-CA-CA TAX-1','tax',217),(11,'replace','coupon',217),(12,'Remote Rangler - 2 Holders','line_item',247),(13,'Flat rate','shipping',247),(14,'US-CA-CA TAX-1','tax',247),(15,'Remote Rangler - 2 Holders','line_item',248),(16,'Remote Rangler 3 Holders','line_item',248),(17,'Flat rate','shipping',248),(18,'US-CA-CA TAX-1','tax',248),(19,'Remote Rangler 3 Holders','line_item',249),(20,'Remote Rangler - 4 Holders','line_item',249),(21,'Flat rate','shipping',249),(22,'US-CA-CA TAX-1','tax',249),(23,'Remote Rangler - 2 Holders','line_item',252),(24,'Flat rate','shipping',252),(25,'US-CA-CA TAX-1','tax',252),(26,'Remote Rangler - 2 Holders','line_item',259),(27,'Flat rate','shipping',259),(28,'US-CA-CA TAX-1','tax',259),(29,'rob','coupon',259),(30,'Remote Rangler 6 Holders','line_item',260),(31,'Flat rate','shipping',260),(32,'US-CA-CA TAX-1','tax',260),(33,'Remote Rangler - 4 Holders','line_item',261),(34,'Flat rate','shipping',261),(35,'Remote Rangler - 2 Holders','line_item',262),(36,'Flat rate','shipping',262),(37,'Remote Rangler 3 Holders','line_item',263),(38,'Flat rate','shipping',263),(39,'Remote Rangler 3 Holders','line_item',265),(40,'Flat rate','shipping',265),(41,'Remote Rangler - 4 Holders','line_item',267),(42,'Flat rate','shipping',267),(43,'Remote Rangler 3 Holders','line_item',268),(44,'Remote Rangler - 2 Holders','line_item',268),(45,'Flat rate','shipping',268),(46,'US-CA-CA TAX-1','tax',268),(47,'Remote Rangler - 2 Holders','line_item',269),(48,'Flat rate','shipping',269),(49,'Remote Rangler - 2 Holders','line_item',270),(50,'Flat rate','shipping',270),(51,'Remote Rangler - 2 Holders','line_item',271),(52,'Flat rate','shipping',271),(53,'Remote Rangler - 4 Holders','line_item',276),(54,'Flat rate','shipping',276),(55,'Remote Rangler 6 Holders','line_item',277),(56,'Flat rate','shipping',277),(57,'Remote Rangler - 2 Holders','line_item',281),(58,'Flat rate','shipping',281),(59,'US-CA-CA TAX-1','tax',281),(60,'Remote Rangler - 4 Holders','line_item',283),(61,'Flat rate','shipping',283),(62,'US-CA-CA TAX-1','tax',283),(63,'Remote Rangler - 2 Holders','line_item',285),(64,'Flat rate','shipping',285),(65,'US-CA-CA TAX-1','tax',285),(66,'Remote Rangler - 4 Holders','line_item',286),(67,'Flat rate','shipping',286),(68,'US-CA-CA TAX-1','tax',286),(69,'Remote Rangler - 2 Holders','line_item',288),(70,'Flat rate','shipping',288),(71,'US-CA-CA TAX-1','tax',288),(72,'Remote Rangler - 2 Holders','line_item',289),(73,'Flat rate','shipping',289),(74,'US-CA-CA TAX-1','tax',289),(75,'Remote Rangler 3 Holders','line_item',291),(76,'Flat rate','shipping',291),(77,'US-CA-CA TAX-1','tax',291),(78,'Remote Rangler 6 Holders','line_item',292),(79,'Flat rate','shipping',292),(80,'US-CA-CA TAX-1','tax',292),(81,'Remote Rangler - 2 Holders','line_item',293),(82,'Flat rate','shipping',293),(83,'US-CA-CA TAX-1','tax',293),(84,'Remote Rangler 3 Holders','line_item',294),(85,'Flat rate','shipping',294),(86,'US-CA-CA TAX-1','tax',294),(87,'Remote Rangler 6 Holders','line_item',297),(88,'Flat rate','shipping',297),(89,'US-CA-CA TAX-1','tax',297),(90,'robmoritz','coupon',297),(91,'Remote Rangler - 2 Holders','line_item',298),(92,'Flat rate','shipping',298),(93,'US-CA-CA TAX-1','tax',298),(94,'Remote Rangler 3 Holders','line_item',299),(95,'Remote Rangler - 4 Holders','line_item',299),(96,'Flat rate','shipping',299),(97,'US-CA-CA TAX-1','tax',299),(98,'Remote Rangler - 2 Holders','line_item',300),(99,'Flat rate','shipping',300),(100,'US-CA-CA TAX-1','tax',300),(101,'Remote Rangler - 2 Holders','line_item',400),(102,'Flat rate','shipping',400),(103,'US-CA-CA TAX-1','tax',400),(104,'Remote Rangler - 2 Holders','line_item',401),(105,'Flat rate','shipping',401),(106,'US-CA-CA TAX-1','tax',401),(107,'Remote Rangler - 4 Holders','line_item',402),(108,'Flat rate','shipping',402),(109,'US-CA-CA TAX-1','tax',402),(110,'Remote Rangler 6 Holders','line_item',403),(111,'Flat rate','shipping',403),(112,'US-CA-CA TAX-1','tax',403),(113,'Remote Rangler - 2 Holders','line_item',404),(114,'Flat rate','shipping',404),(115,'US-CA-CA TAX-1','tax',404),(116,'Remote Rangler - 2 Holders','line_item',405),(117,'Flat rate','shipping',405),(118,'US-CA-CA TAX-1','tax',405),(119,'Remote Rangler - 4 Holders','line_item',409),(120,'Flat rate','shipping',409),(121,'US-CA-CA TAX-1','tax',409),(122,'Remote Rangler 3 Holders','line_item',410),(123,'Flat rate','shipping',410),(124,'US-CA-CA TAX-1','tax',410),(125,'Remote Rangler - 2 Holders','line_item',411),(126,'Flat rate','shipping',411),(127,'US-CA-CA TAX-1','tax',411),(128,'Remote Rangler 3 Holders','line_item',412),(129,'Flat rate','shipping',412),(130,'US-CA-CA TAX-1','tax',412),(131,'Remote Rangler - 4 Holders','line_item',413),(132,'Flat rate','shipping',413),(133,'US-CA-CA TAX-1','tax',413);
/*!40000 ALTER TABLE `wprl_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wprl_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_payment_tokenmeta`
--

LOCK TABLES `wprl_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wprl_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_payment_tokens`
--

LOCK TABLES `wprl_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wprl_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wprl_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=MyISAM AUTO_INCREMENT=2356 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_sessions`
--

LOCK TABLES `wprl_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wprl_woocommerce_sessions` VALUES (2350,'9bdb2ca89e81b91c968eccdba7d2fd74','a:13:{s:4:\"cart\";s:634:\"a:1:{s:32:\"812b4ba287f5ee0bc9d43bbf5bbe87fb\";a:11:{s:3:\"key\";s:32:\"812b4ba287f5ee0bc9d43bbf5bbe87fb\";s:10:\"product_id\";i:95;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:2.754049999999999887023705014144070446491241455078125;}s:5:\"total\";a:1:{i:1;d:2.754049999999999887023705014144070446491241455078125;}}s:13:\"line_subtotal\";d:28.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";d:2.75;s:10:\"line_total\";d:28.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";d:2.75;}}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:5:\"28.99\";s:12:\"subtotal_tax\";d:2.75;s:14:\"shipping_total\";s:4:\"0.99\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"28.99\";s:17:\"cart_contents_tax\";d:2.75;s:19:\"cart_contents_taxes\";a:1:{i:1;d:2.75;}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"32.73\";s:9:\"total_tax\";d:2.75;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:0:\"\";s:22:\"shipping_for_package_0\";s:390:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_42c35ecd1755779be093a4d2499e8727\";s:5:\"rates\";a:1:{s:11:\"flat_rate:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:6:{s:2:\"id\";s:11:\"flat_rate:1\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:1;s:5:\"label\";s:9:\"Flat rate\";s:4:\"cost\";s:4:\"0.99\";s:5:\"taxes\";a:0:{}}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:34:\"Remote Rangler 6 Holders &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:39:\"a:1:{i:0;a:1:{i:0;s:11:\"flat_rate:1\";}}\";s:23:\"chosen_shipping_methods\";s:29:\"a:1:{i:0;s:11:\"flat_rate:1\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:10:\"wc_notices\";N;s:8:\"customer\";s:691:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"CA\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"CA\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1572903028),(2352,'4ba7597e53ef83ea2b4db0953ce66d85','a:13:{s:4:\"cart\";s:735:\"a:1:{s:32:\"a8f15eda80c50adb0e71943adc8015cf\";a:11:{s:3:\"key\";s:32:\"a8f15eda80c50adb0e71943adc8015cf\";s:10:\"product_id\";i:151;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:1.994050000000000100186525742174126207828521728515625;}s:5:\"total\";a:1:{i:1;d:1.994050000000000100186525742174126207828521728515625;}}s:13:\"line_subtotal\";d:20.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";d:1.9899999999999999911182158029987476766109466552734375;s:10:\"line_total\";d:20.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";d:1.9899999999999999911182158029987476766109466552734375;}}\";s:11:\"cart_totals\";s:625:\"a:15:{s:8:\"subtotal\";s:5:\"20.99\";s:12:\"subtotal_tax\";d:1.9899999999999999911182158029987476766109466552734375;s:14:\"shipping_total\";s:4:\"0.99\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"20.99\";s:17:\"cart_contents_tax\";d:1.9899999999999999911182158029987476766109466552734375;s:19:\"cart_contents_taxes\";a:1:{i:1;d:1.9899999999999999911182158029987476766109466552734375;}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"23.97\";s:9:\"total_tax\";d:1.9899999999999999911182158029987476766109466552734375;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:0:\"\";s:22:\"shipping_for_package_0\";s:392:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_4be4b50ea7a62d9850143275be035229\";s:5:\"rates\";a:1:{s:11:\"flat_rate:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:6:{s:2:\"id\";s:11:\"flat_rate:1\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:1;s:5:\"label\";s:9:\"Flat rate\";s:4:\"cost\";s:4:\"0.99\";s:5:\"taxes\";a:0:{}}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:36:\"Remote Rangler - 4 Holders &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:39:\"a:1:{i:0;a:1:{i:0;s:11:\"flat_rate:1\";}}\";s:23:\"chosen_shipping_methods\";s:29:\"a:1:{i:0;s:11:\"flat_rate:1\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:10:\"wc_notices\";N;s:8:\"customer\";s:691:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"CA\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"CA\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1572987672),(2353,'4b788ccb08445b47b41ba3717366f12b','a:13:{s:4:\"cart\";s:634:\"a:1:{s:32:\"812b4ba287f5ee0bc9d43bbf5bbe87fb\";a:11:{s:3:\"key\";s:32:\"812b4ba287f5ee0bc9d43bbf5bbe87fb\";s:10:\"product_id\";i:95;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:2.754049999999999887023705014144070446491241455078125;}s:5:\"total\";a:1:{i:1;d:2.754049999999999887023705014144070446491241455078125;}}s:13:\"line_subtotal\";d:28.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";d:2.75;s:10:\"line_total\";d:28.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";d:2.75;}}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:5:\"28.99\";s:12:\"subtotal_tax\";d:2.75;s:14:\"shipping_total\";s:4:\"0.99\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"28.99\";s:17:\"cart_contents_tax\";d:2.75;s:19:\"cart_contents_taxes\";a:1:{i:1;d:2.75;}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"32.73\";s:9:\"total_tax\";d:2.75;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:0:\"\";s:22:\"shipping_for_package_0\";s:390:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_42c35ecd1755779be093a4d2499e8727\";s:5:\"rates\";a:1:{s:11:\"flat_rate:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:6:{s:2:\"id\";s:11:\"flat_rate:1\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:1;s:5:\"label\";s:9:\"Flat rate\";s:4:\"cost\";s:4:\"0.99\";s:5:\"taxes\";a:0:{}}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:34:\"Remote Rangler 6 Holders &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:39:\"a:1:{i:0;a:1:{i:0;s:11:\"flat_rate:1\";}}\";s:23:\"chosen_shipping_methods\";s:29:\"a:1:{i:0;s:11:\"flat_rate:1\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:10:\"wc_notices\";N;s:8:\"customer\";s:691:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"CA\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"CA\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1573025691),(2355,'e6243f8cbccdd950408c108a11e4165a','a:13:{s:4:\"cart\";s:736:\"a:1:{s:32:\"7647966b7343c29048673252e490f736\";a:11:{s:3:\"key\";s:32:\"7647966b7343c29048673252e490f736\";s:10:\"product_id\";i:89;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:1.6140499999999999847233311811578460037708282470703125;}s:5:\"total\";a:1:{i:1;d:1.6140499999999999847233311811578460037708282470703125;}}s:13:\"line_subtotal\";d:16.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";d:1.6100000000000000976996261670137755572795867919921875;s:10:\"line_total\";d:16.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";d:1.6100000000000000976996261670137755572795867919921875;}}\";s:11:\"cart_totals\";s:625:\"a:15:{s:8:\"subtotal\";s:5:\"16.99\";s:12:\"subtotal_tax\";d:1.6100000000000000976996261670137755572795867919921875;s:14:\"shipping_total\";s:4:\"0.99\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"16.99\";s:17:\"cart_contents_tax\";d:1.6100000000000000976996261670137755572795867919921875;s:19:\"cart_contents_taxes\";a:1:{i:1;d:1.6100000000000000976996261670137755572795867919921875;}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"19.59\";s:9:\"total_tax\";d:1.6100000000000000976996261670137755572795867919921875;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:0:\"\";s:22:\"shipping_for_package_0\";s:390:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_e6e7fd867ef320de9456840a01678ade\";s:5:\"rates\";a:1:{s:11:\"flat_rate:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:6:{s:2:\"id\";s:11:\"flat_rate:1\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:1;s:5:\"label\";s:9:\"Flat rate\";s:4:\"cost\";s:4:\"0.99\";s:5:\"taxes\";a:0:{}}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:34:\"Remote Rangler 3 Holders &times; 1\";}}}}\";s:25:\"previous_shipping_methods\";s:39:\"a:1:{i:0;a:1:{i:0;s:11:\"flat_rate:1\";}}\";s:23:\"chosen_shipping_methods\";s:29:\"a:1:{i:0;s:11:\"flat_rate:1\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:10:\"wc_notices\";N;s:8:\"customer\";s:691:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"CA\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"CA\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1573065529),(2354,'1','a:11:{s:4:\"cart\";s:1407:\"a:2:{s:32:\"7647966b7343c29048673252e490f736\";a:10:{s:3:\"key\";s:32:\"7647966b7343c29048673252e490f736\";s:10:\"product_id\";i:89;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:1.6140499999999999847233311811578460037708282470703125;}s:5:\"total\";a:1:{i:1;d:1.6140499999999999847233311811578460037708282470703125;}}s:13:\"line_subtotal\";d:16.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";d:1.6100000000000000976996261670137755572795867919921875;s:10:\"line_total\";d:16.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";d:1.6100000000000000976996261670137755572795867919921875;}s:32:\"cedebb6e872f539bef8c3f919874e9d7\";a:11:{s:3:\"key\";s:32:\"cedebb6e872f539bef8c3f919874e9d7\";s:10:\"product_id\";i:183;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:2;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:2.468100000000000182609483090345747768878936767578125;}s:5:\"total\";a:1:{i:1;d:2.468100000000000182609483090345747768878936767578125;}}s:13:\"line_subtotal\";d:25.980000000000000426325641456060111522674560546875;s:17:\"line_subtotal_tax\";d:2.470000000000000195399252334027551114559173583984375;s:10:\"line_total\";d:25.980000000000000426325641456060111522674560546875;s:8:\"line_tax\";d:2.470000000000000195399252334027551114559173583984375;}}\";s:11:\"cart_totals\";s:613:\"a:15:{s:8:\"subtotal\";s:5:\"42.97\";s:12:\"subtotal_tax\";d:4.0800000000000000710542735760100185871124267578125;s:14:\"shipping_total\";s:4:\"0.99\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"42.97\";s:17:\"cart_contents_tax\";d:4.0800000000000000710542735760100185871124267578125;s:19:\"cart_contents_taxes\";a:1:{i:1;d:4.0800000000000000710542735760100185871124267578125;}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"48.04\";s:9:\"total_tax\";d:4.0800000000000000710542735760100185871124267578125;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:22:\"shipping_for_package_0\";s:428:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_2d4ed7fe0a772ee7aa693ff9ae721995\";s:5:\"rates\";a:1:{s:11:\"flat_rate:1\";O:16:\"WC_Shipping_Rate\":2:{s:7:\"\0*\0data\";a:6:{s:2:\"id\";s:11:\"flat_rate:1\";s:9:\"method_id\";s:9:\"flat_rate\";s:11:\"instance_id\";i:1;s:5:\"label\";s:9:\"Flat rate\";s:4:\"cost\";s:4:\"0.99\";s:5:\"taxes\";a:0:{}}s:12:\"\0*\0meta_data\";a:1:{s:5:\"Items\";s:72:\"Remote Rangler 3 Holders &times; 1, Remote Rangler - 2 Holders &times; 2\";}}}}\";s:25:\"previous_shipping_methods\";s:39:\"a:1:{i:0;a:1:{i:0;s:11:\"flat_rate:1\";}}\";s:23:\"chosen_shipping_methods\";s:29:\"a:1:{i:0;s:11:\"flat_rate:1\";}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:1;}\";s:8:\"customer\";s:929:\"a:26:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2018-12-10T13:27:18-08:00\";s:8:\"postcode\";s:5:\"90260\";s:4:\"city\";s:8:\"Lawndale\";s:9:\"address_1\";s:17:\"15903 Prairie ave\";s:7:\"address\";s:17:\"15903 Prairie ave\";s:9:\"address_2\";s:5:\"apt 4\";s:5:\"state\";s:2:\"CA\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:5:\"90260\";s:13:\"shipping_city\";s:8:\"Lawndale\";s:18:\"shipping_address_1\";s:17:\"15903 Prairie ave\";s:16:\"shipping_address\";s:17:\"15903 Prairie ave\";s:18:\"shipping_address_2\";s:5:\"apt 4\";s:14:\"shipping_state\";s:2:\"CA\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:6:\"joseph\";s:9:\"last_name\";s:7:\"Willett\";s:7:\"company\";s:21:\"The Remote Controller\";s:5:\"phone\";s:10:\"6616748245\";s:5:\"email\";s:22:\"joewillett44@gmail.com\";s:19:\"shipping_first_name\";s:6:\"joseph\";s:18:\"shipping_last_name\";s:7:\"Willett\";s:16:\"shipping_company\";s:21:\"The Remote Controller\";}\";}',1573085287),(2351,'9303b6d5d0a20ed81aaf4d261077b8fc','a:13:{s:4:\"cart\";s:634:\"a:1:{s:32:\"812b4ba287f5ee0bc9d43bbf5bbe87fb\";a:11:{s:3:\"key\";s:32:\"812b4ba287f5ee0bc9d43bbf5bbe87fb\";s:10:\"product_id\";i:95;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:1:{i:1;d:2.754049999999999887023705014144070446491241455078125;}s:5:\"total\";a:1:{i:1;d:2.754049999999999887023705014144070446491241455078125;}}s:13:\"line_subtotal\";d:28.989999999999998436805981327779591083526611328125;s:17:\"line_subtotal_tax\";d:2.75;s:10:\"line_total\";d:28.989999999999998436805981327779591083526611328125;s:8:\"line_tax\";d:2.75;}}\";s:11:\"cart_totals\";s:425:\"a:15:{s:8:\"subtotal\";s:5:\"28.99\";s:12:\"subtotal_tax\";d:2.75;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:0;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:5:\"28.99\";s:17:\"cart_contents_tax\";d:2.75;s:19:\"cart_contents_taxes\";a:1:{i:1;d:2.75;}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:5:\"31.74\";s:9:\"total_tax\";d:2.75;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:16:\"wca_session_data\";s:0:\"\";s:22:\"shipping_for_package_0\";s:92:\"a:2:{s:12:\"package_hash\";s:40:\"wc_ship_88b90e2b75e1432dba32302ffc4815fa\";s:5:\"rates\";a:0:{}}\";s:25:\"previous_shipping_methods\";s:16:\"a:1:{i:0;a:0:{}}\";s:22:\"shipping_method_counts\";s:14:\"a:1:{i:0;i:0;}\";s:8:\"customer\";s:724:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:4:\"2150\";s:4:\"city\";s:10:\"Parramatta\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:3:\"NSW\";s:7:\"country\";s:2:\"AU\";s:17:\"shipping_postcode\";s:4:\"2150\";s:13:\"shipping_city\";s:10:\"Parramatta\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:3:\"NSW\";s:16:\"shipping_country\";s:2:\"AU\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:1:\"1\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";s:10:\"wc_notices\";N;s:23:\"chosen_shipping_methods\";s:14:\"a:1:{i:0;b:0;}\";}',1572931514);
/*!40000 ALTER TABLE `wprl_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wprl_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_shipping_zone_locations`
--

LOCK TABLES `wprl_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_shipping_zone_locations` DISABLE KEYS */;
INSERT INTO `wprl_woocommerce_shipping_zone_locations` VALUES (1,1,'US','country');
/*!40000 ALTER TABLE `wprl_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wprl_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_shipping_zone_methods`
--

LOCK TABLES `wprl_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_shipping_zone_methods` DISABLE KEYS */;
INSERT INTO `wprl_woocommerce_shipping_zone_methods` VALUES (1,1,'flat_rate',1,1),(0,2,'wc_services_usps',1,1);
/*!40000 ALTER TABLE `wprl_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wprl_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_shipping_zones`
--

LOCK TABLES `wprl_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_shipping_zones` DISABLE KEYS */;
INSERT INTO `wprl_woocommerce_shipping_zones` VALUES (1,'United States (US)',0);
/*!40000 ALTER TABLE `wprl_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wprl_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_tax_rate_locations`
--

LOCK TABLES `wprl_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_tax_rate_locations` DISABLE KEYS */;
INSERT INTO `wprl_woocommerce_tax_rate_locations` VALUES (1,'90260',1,'postcode'),(2,'LAWNDALE',1,'city'),(3,'91342',2,'postcode'),(4,'SYLMAR',2,'city'),(5,'92024-4040',3,'postcode'),(6,'ENCINITAS',3,'city');
/*!40000 ALTER TABLE `wprl_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wprl_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT 0,
  `tax_rate_shipping` int(1) NOT NULL DEFAULT 1,
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_woocommerce_tax_rates`
--

LOCK TABLES `wprl_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wprl_woocommerce_tax_rates` DISABLE KEYS */;
INSERT INTO `wprl_woocommerce_tax_rates` VALUES (1,'US','CA','9.5000','CA Tax',1,0,0,0,''),(2,'US','CA','9.5000','CA Tax',1,0,0,0,''),(3,'US','CA','7.7500','CA Tax',1,0,0,0,'');
/*!40000 ALTER TABLE `wprl_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_yoast_seo_links`
--

DROP TABLE IF EXISTS `wprl_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_id` bigint(20) unsigned NOT NULL,
  `target_post_id` bigint(20) unsigned NOT NULL,
  `type` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`)
) ENGINE=MyISAM AUTO_INCREMENT=278 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_yoast_seo_links`
--

LOCK TABLES `wprl_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wprl_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wprl_yoast_seo_links` VALUES (85,'http://remoterangler.com/products/',28,0,'internal'),(143,'http://remoterangler.com/products/',2,0,'internal'),(256,'/?fl_builder&#038;add-to-cart=95',27,0,'internal'),(255,'http://remoterangler.com/product/remote-rangler-6-holders/',27,95,'internal'),(254,'/?fl_builder&#038;add-to-cart=151',27,0,'internal'),(252,'/?fl_builder&#038;add-to-cart=89',27,0,'internal'),(253,'http://remoterangler.com/product/remote-rangler-4-holders/',27,151,'internal'),(251,'http://remoterangler.com/product/remote-rangler-3-holders/',27,89,'internal'),(249,'http://remoterangler.com/product-category/remote-ranglers/',27,0,'internal'),(250,'/?fl_builder#respond',27,0,'internal'),(205,'http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-pitch-deck-collab.pdf',123,0,'internal'),(248,'http://remoterangler.com/wp-content/uploads/2018/04/20180429_023746.jpg',27,0,'internal'),(247,'http://remoterangler.com/wp-content/uploads/2018/04/20180429_022804.jpg',27,0,'internal'),(245,'http://remoterangler.com/products/',27,0,'internal'),(246,'http://remoterangler.com/wp-content/uploads/2018/05/20180430_231400.jpg',27,0,'internal'),(244,'http://remoterangler.com/products/',27,0,'internal'),(242,'http://remoterangler.com/about',27,28,'internal'),(243,'http://remoterangler.com/products/',27,0,'internal'),(241,'http://remoterangler.com/about',27,28,'internal'),(240,'http://remoterangler.com/about',27,28,'internal'),(277,'http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf',234,0,'internal'),(276,'http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf',234,0,'internal'),(181,'http://remoterangler.com/wp-content/uploads/2018/06/Success-Vibes.zip',220,0,'internal'),(275,'http://remoterangler.com/wp-content/uploads/2018/06/Remote-Rangler-Buyer-one-page-summary.pdf',234,0,'internal'),(179,'http://remoterangler.com/wp-content/uploads/2018/06/Itchy-Palms.wma',220,0,'internal'),(180,'http://remoterangler.com/wp-content/uploads/2018/06/No-one-as-hard-as-us.wma',220,0,'internal'),(178,'http://remoterangler.com/wp-content/uploads/2018/06/DO-IT.wma',220,0,'internal'),(177,'http://remoterangler.com/wp-content/uploads/2018/06/Smilen.wma',220,0,'internal'),(176,'http://remoterangler.com/wp-content/uploads/2018/06/Luxury-the-Life.wma',220,0,'internal'),(204,'http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf',123,0,'internal'),(203,'http://remoterangler.com/wp-content/uploads/2018/05/Remote-Rangler-one-page-Summary.pdf',123,0,'internal'),(239,'http://remoterangler.com/howitworks/',27,2,'internal'),(238,'http://remoterangler.com/howitworks/',27,2,'internal'),(237,'http://remoterangler.com/howitworks/',27,2,'internal'),(236,'http://remoterangler.com/products/',27,0,'internal');
/*!40000 ALTER TABLE `wprl_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wprl_yoast_seo_meta`
--

DROP TABLE IF EXISTS `wprl_yoast_seo_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wprl_yoast_seo_meta` (
  `object_id` bigint(20) unsigned NOT NULL,
  `internal_link_count` int(10) unsigned DEFAULT NULL,
  `incoming_link_count` int(10) unsigned DEFAULT NULL,
  UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wprl_yoast_seo_meta`
--

LOCK TABLES `wprl_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wprl_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wprl_yoast_seo_meta` VALUES (27,21,0),(2,1,3),(28,1,3),(151,0,1),(95,0,1),(89,0,1),(183,0,0),(187,0,0),(123,3,0),(94,0,0),(81,0,0),(92,0,0),(88,0,0),(185,0,0),(186,0,0),(191,0,0),(201,0,0),(215,0,0),(214,0,0),(48,0,0),(104,0,0),(60,0,0),(63,0,0),(37,0,0),(31,0,0),(80,0,0),(79,0,0),(93,0,0),(97,0,0),(103,0,0),(102,0,0),(98,0,0),(121,0,0),(149,0,0),(150,0,0),(160,0,0),(166,0,0),(169,0,0),(171,0,0),(177,0,0),(184,0,0),(131,0,0),(129,0,0),(130,0,0),(220,6,0),(212,0,0),(213,0,0),(219,0,0),(218,0,0),(234,3,0),(233,0,0),(250,0,0),(253,0,0),(257,0,0),(199,0,0),(200,0,0),(198,0,0),(258,0,0),(264,0,0),(266,0,0),(272,0,0),(280,0,0),(256,0,0),(254,0,0),(255,0,0),(282,0,0),(284,0,0),(287,0,0),(290,0,0),(295,0,0),(301,0,0),(275,0,0),(273,0,0),(274,0,0),(306,0,0),(307,0,0),(308,0,0),(309,0,0),(310,0,0),(311,0,0),(312,0,0),(313,0,0),(314,0,0),(315,0,0),(316,0,0),(317,0,0),(318,0,0),(319,0,0),(320,0,0),(323,0,0),(321,0,0),(322,0,0),(324,0,0),(334,0,0),(325,0,0),(340,0,0),(339,0,0),(338,0,0),(337,0,0),(336,0,0),(335,0,0),(349,0,0),(348,0,0),(347,0,0),(346,0,0),(345,0,0),(344,0,0),(343,0,0),(342,0,0),(341,0,0),(326,0,0),(350,0,0),(351,0,0),(352,0,0),(327,0,0),(357,0,0),(356,0,0),(355,0,0),(354,0,0),(353,0,0),(365,0,0),(364,0,0),(363,0,0),(362,0,0),(361,0,0),(360,0,0),(359,0,0),(358,0,0),(328,0,0),(369,0,0),(368,0,0),(367,0,0),(366,0,0),(370,0,0),(329,0,0),(371,0,0),(372,0,0),(373,0,0),(381,0,0),(380,0,0),(379,0,0),(378,0,0),(377,0,0),(376,0,0),(375,0,0),(374,0,0),(330,0,0),(387,0,0),(386,0,0),(385,0,0),(384,0,0),(383,0,0),(382,0,0),(331,0,0),(332,0,0),(388,0,0),(389,0,0),(390,0,0),(391,0,0),(392,0,0),(393,0,0),(398,0,0),(397,0,0),(396,0,0),(395,0,0),(394,0,0),(333,0,0),(399,0,0),(406,0,0),(407,0,0);
/*!40000 ALTER TABLE `wprl_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2019-11-04 19:51:40
